Move llvm/test/DebugInfo/live-debug-values.ll into X86, due to target triple.
[oota-llvm.git] / test / DebugInfo / Inputs / dwarfdump-test-loc-list-32bit.elf.cpp
1 // clang -c -g -o dwarfdump-test-loc-list-32bit.elf.o -m32 dwarfdump-test-loc-list-32bit.elf.cpp
2
3 namespace pr14763 {
4 struct foo {
5   foo(const foo&);
6 };
7
8 foo func(bool b, foo f, foo g) {
9   if (b)
10     return f;
11   return g;
12 }
13 }