diff options
Diffstat (limited to 'debuginfo-tests/ctor.cpp')
-rw-r--r-- | debuginfo-tests/ctor.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debuginfo-tests/ctor.cpp b/debuginfo-tests/ctor.cpp deleted file mode 100644 index 92cdbcd7e0b..00000000000 --- a/debuginfo-tests/ctor.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// RUN: %clangxx %target_itanium_abi_host_triple -O0 -g %s -c -o %t.o -// RUN: %clangxx %target_itanium_abi_host_triple %t.o -o %t.out -// RUN: %test_debuginfo %s %t.out - - -// DEBUGGER: break 14 -// DEBUGGER: r -// DEBUGGER: p *this -// CHECK-NEXT-NOT: Cannot access memory at address - -class A { -public: - A() : zero(0), data(42) - { - } -private: - int zero; - int data; -}; - -int main() { - A a; - return 0; -} - |