[cfe-commits] r84777 - /cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c

Benjamin Kramer benny.kra at googlemail.com
Wed Oct 21 12:59:44 PDT 2009


Author: d0k
Date: Wed Oct 21 14:59:43 2009
New Revision: 84777

URL: http://llvm.org/viewvc/llvm-project?rev=84777&view=rev
Log:
Force triple; this test was failing on non-darwin platforms due to different
asm comment styles (## vs #).

Modified:
    cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c

Modified: cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c?rev=84777&r1=84776&r2=84777&view=diff

==============================================================================
--- cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c (original)
+++ cfe/trunk/test/CodeGen/2009-10-20-GlobalDebug.c Wed Oct 21 14:59:43 2009
@@ -1,4 +1,4 @@
-// RUN: clang -S -g -dA %s -o - | FileCheck %s
+// RUN: clang -ccc-host-triple i386-apple-darwin10 -S -g -dA %s -o - | FileCheck %s
 int global;
 // CHECK: asciz  "global"                                    ## DW_AT_MIPS_linkage_name
 int main() { return 0;}





More information about the cfe-commits mailing list