OSDN Git Service

2005-01-18 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-a.c
1 /* { dg-require-effective-target ilp32 } */
2 /* { dg-options "-O2" } */
3
4 /* The problem was we were not striping the long cast here.
5    Note this really should be invalid code but not for the
6    current release (4.0) as we have people using it.  */
7
8 void blockCopy_MMX2(int*);
9 void postProcess_MMX2()
10 {
11   int c, x,y, width;
12   asm( "" :: "m" ((long)x));
13   blockCopy_MMX2(&c);
14 }