re PR tree-optimization/17529 (ICE in get_indirect_ref_operands)

2004-10-17  Andrew Pinski  <pinskia@physics.uc.edu>

        PR c/17529
        * gcc.c-torture/compile/pr17529.c: New test.

From-SVN: r89175
This commit is contained in:
Andrew Pinski 2004-10-17 17:24:59 +00:00 committed by Andrew Pinski
parent 6c62412f72
commit 36e5122e5c
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-10-17 Andrew Pinski <pinskia@physics.uc.edu>
PR c/17529
* gcc.c-torture/compile/pr17529.c: New test.
2004-10-17 Giovanni Bajo <giovannibajo@gcc.gnu.org>
PR c++/17743

View File

@ -0,0 +1,13 @@
static inline void
bar (const int * const x)
{
__asm__ __volatile__ ("paddd" " %0, %%" "mm0"::"m" (*x));
}
static const int y[];
void
foo (void)
{
bar (y);
}