rs6000: Update ELFv2 stack frame comment showing the correct ROP save location
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20011217-1.c
blobb61bd8b64d48c5fc9237eafeb44a697b58c190b3
1 void abort (void);
2 void exit (int);
4 int
5 main()
7 double x = 1.0;
8 double y = 2.0;
10 if ((y > x--) != 1)
11 abort ();
12 exit (0);