Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20090303_0.C
blob88bd6ad9bebb3da231dfaa9234956dc66a09b69a
1 /* { dg-lto-do run } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-lto-options {{-flto -flto-partition=1to1 -fPIC}} } */
4 /* { dg-lto-options {{-flto -flto-partition=1to1}} { target sparc*-*-* } } */
5 /* { dg-suppress-ld-options {-fPIC} }  */
6 void foobar(int *, int* __x)    ;
7 int test_ints[30];
8 int j;
10 void foobar (int *x, int *y)
12   *x = *y = 0;
15 void Test() {
16  int int_set_;
17  foobar (&int_set_, &test_ints[j]);
19 main()
21   Test();
22   return 0;