Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / 20011214-1.c
blobdd05798fabfe641775c92dd4abef3b791ec9d9a4
1 /* { dg-do run } */
3 extern void abort (void);
4 extern void exit (int);
6 #define small __attribute__((mode(QI))) int
7 int main()
9 int x, y = 0x400;
11 x = (small) y; /* { dg-bogus "ignored" } */
12 if (sizeof (small) != sizeof (char)) /* { dg-bogus "ignored" } */
13 abort ();
14 if (sizeof (x) != sizeof (char) && x == y)
15 abort ();
16 return 0;