[cfe-commits] r110936 - /cfe/trunk/test/CodeGenCXX/debug-info-ctor.cpp

Devang Patel dpatel at apple.com
Thu Aug 12 10:42:42 PDT 2010


Author: dpatel
Date: Thu Aug 12 12:42:42 2010
New Revision: 110936

URL: http://llvm.org/viewvc/llvm-project?rev=110936&view=rev
Log:
Make this test darwin only.

Modified:
    cfe/trunk/test/CodeGenCXX/debug-info-ctor.cpp

Modified: cfe/trunk/test/CodeGenCXX/debug-info-ctor.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-ctor.cpp?rev=110936&r1=110935&r2=110936&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-ctor.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-ctor.cpp Thu Aug 12 12:42:42 2010
@@ -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 @@
 };
 
 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;
 }
 





More information about the cfe-commits mailing list