Add "__RTL" to cc1
[official-gcc.git] / gcc / testsuite / gcc.dg / rtl / x86_64 / test_1.h
bloba783ea868f01ea0d216fbc4987c6fea94cf073e6
1 /* Shared test code for the various __RTL tests of test_1 that
2 start at different passes. */
4 extern void abort (void);
5 extern int test_1 (int i, int j, int k);
7 int main (void)
9 if (test_1 (0, 0, 3) != -3)
10 abort ();
12 if (test_1 (0, 1, 3) != 7)
13 abort ();
15 return 0;