aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2013-05-03 01:42:35 +0000
committerAdrian Prantl <aprantl@apple.com>2013-05-03 01:42:35 +0000
commitbb09f7b1d9312471b701f2683a9d955b4e954630 (patch)
tree9bef15edbeaaaf02dda5055d42af83c92147ed53 /test
parente19229be18725bd856410b478c0e63d81ab8e4f5 (diff)
Revert "Attempt to un-break the gdb buildbot."
This reverts commit 180982. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@180990 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGenCXX/linetable-cleanup.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/CodeGenCXX/linetable-cleanup.cpp b/test/CodeGenCXX/linetable-cleanup.cpp
deleted file mode 100644
index 4077af6d8e..0000000000
--- a/test/CodeGenCXX/linetable-cleanup.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// RUN: %clang_cc1 -emit-llvm -g -triple x86_64-apple-darwin10 %s -o - | FileCheck %s
-
-// Check the line numbers for cleanup code with EH in combinatin with
-// simple return expressions.
-
-// CHECK: define {{.*}}foo
-// CHECK: call void @_ZN1CD1Ev(%class.C* {{.*}}), !dbg ![[CLEANUP:[0-9]+]]
-// CHECK: ret i32 0, !dbg ![[RET:[0-9]+]]
-
-class C {
-public:
- ~C() {}
- int i;
-};
-
-int foo()
-{
- C c;
- c.i = 42;
- // This breakpoint should be at/before the cleanup code.
- // CHECK: ![[CLEANUP]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
- return 0;
- // CHECK: ![[RET]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
-}