summaryrefslogtreecommitdiff
path: root/test/DebugInfo/Inputs/dwarfdump-test-loc-list-32bit.elf.cpp
blob: 04a0b20cc2ce70f8a29bd584ad339be155bbaf41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// clang -c -g -o dwarfdump-test-loc-list-32bit.elf.o -m32 dwarfdump-test-loc-list-32bit.elf.cpp

namespace pr14763 {
struct foo {
  foo(const foo&);
};

foo func(bool b, foo f, foo g) {
  if (b)
    return f;
  return g;
}
}