PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr47299.c
blob4f3d1f9cb12a13a474ffaf88bc7edd0c704f8a83
1 /* PR rtl-optimization/47299 */
3 extern void abort (void);
5 __attribute__ ((noinline, noclone)) unsigned short
6 foo (unsigned char x)
8 return x * 255;
11 int
12 main ()
14 if (foo (0x40) != 0x3fc0)
15 abort ();
16 return 0;