blob: 34252ea0ae03b3cbdc2025fd74b44dd6898d7c4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* PR rtl-optimization/51023 */
extern void abort (void);
short int
foo (long int x)
{
return x;
}
int
main ()
{
long int a = 0x4272AL;
if (foo (a) == a)
abort ();
return 0;
}
|