aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-08-12 17:42:42 +0000
committerDevang Patel <dpatel@apple.com>2010-08-12 17:42:42 +0000
commitf128b858871748d6342bc394af28ea4955b826be (patch)
treee1873386060f590b7591673beccc8dba16d490db
parent2d474ba9e8ae43a1a5a9f72718c0d79092b9453f (diff)
Make this test darwin only.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110936 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/debug-info-ctor.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/CodeGenCXX/debug-info-ctor.cpp b/test/CodeGenCXX/debug-info-ctor.cpp
index c31eebe163..562b8081c4 100644
--- a/test/CodeGenCXX/debug-info-ctor.cpp
+++ b/test/CodeGenCXX/debug-info-ctor.cpp
@@ -1,4 +1,4 @@
-// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
+// RUN: %clang -march=x86_64-apple-darwin10 -emit-llvm -g -S %s -o - | FileCheck %s
struct X {
X(int v);
@@ -7,8 +7,7 @@ struct X {
};
X::X(int v) {
- // CHECK_TEMPORARILY_DISABLED: call void @_ZN1XC2Ei(%struct.X* %this1, i32 %tmp), !dbg
- // TEMPORARY CHECK: X
+ // CHECK: call void @_ZN1XC2Ei(%struct.X* %this1, i32 %tmp), !dbg
value = v;
}