Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git] / test / C++Frontend / 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;