]> granicus.if.org Git - clang/commitdiff
Revert r110936; this fails on clang-i686-darwin10 too.
authorDan Gohman <gohman@apple.com>
Thu, 12 Aug 2010 18:57:17 +0000 (18:57 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 12 Aug 2010 18:57:17 +0000 (18:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110942 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/debug-info-ctor.cpp

index 562b8081c4d4cfcdb9a0df9cd241d773486f4f1e..c31eebe163ca5aff9455fd8187c03f521a29e958 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang -march=x86_64-apple-darwin10 -emit-llvm -g -S %s -o - | FileCheck %s
+// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s
 
 struct X {
   X(int v);
@@ -7,7 +7,8 @@ struct X {
 };
 
 X::X(int v) {
-  // CHECK: call void @_ZN1XC2Ei(%struct.X* %this1, i32 %tmp), !dbg
+  // CHECK_TEMPORARILY_DISABLED: call void @_ZN1XC2Ei(%struct.X* %this1, i32 %tmp), !dbg
+  // TEMPORARY CHECK: X
   value = v;
 }