mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
14 lines
226 B
C++
14 lines
226 B
C++
|
// 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;
|
||
|
}
|
||
|
}
|