This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
Here is a test case showing the same problem on the Alpha:
extern void bar (); void foo (long a) { for (;;) { register long b __asm ("$11") = a;
__asm volatile ("callsys %0" : : "r" (b)); bar (); } }
And another person found the same on ARM, see PR 15089. Note the tree-ssa will needs another change.
Thanks, Andrew Pinski
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |