Add "__RTL" to cc1
[official-gcc.git] / gcc / testsuite / gcc.dg / rtl / x86_64 / times-two.h
blob3b89cb962f1b95d210960e67f90a3336e06af35c
1 /* Shared test code for the various __RTL tests of times_two that
2 start at different passes. */
4 extern void abort (void);
5 int times_two (int i);
7 int main (void)
9 if (times_two (0) != 0)
10 abort ();
12 if (times_two (1) != 2)
13 abort ();
15 if (times_two (100) != 200)
16 abort ();
18 if (times_two (-20) != -40)
19 abort ();
21 return 0;