Fix part 1 of pr4682. PICADD is a 16-bit instruction even in thumb2 mode.
[llvm/avr.git] / test / FrontendC++ / 2003-11-25-ReturningOpaqueByValue.cpp
blob83fe1b3e810c55148c53a7fb74d90198c2e58746
1 // RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
3 #include <vector>
4 std::vector<int> my_method ();
6 int
7 main ()
9 my_method ();
10 return 0;