Fix LDRi12 immediate operand, which was changed to be the second operand in $addrmode...
[oota-llvm.git] / test / FrontendC++ / 2003-11-25-ReturningOpaqueByValue.cpp
1 // RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
2
3 #include <vector>
4 std::vector<int> my_method ();
5
6 int
7 main ()
8 {
9   my_method ();
10   return 0;
11 }
12