Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.other / sibcall1.C
blob7b5a82b78e74426f3038659207d1cb71c2cf2160
1 // { dg-do run  }
2 // { dg-options "-O2" }
4 #include <iostream>
6 std::ostream& foo (char *x, std::ostream &y)
8   return y << "" << x;
11 int main ()
13   foo ("", std::cout);