From: Benjamin Kramer Date: Wed, 21 Oct 2009 19:59:43 +0000 (+0000) Subject: Force triple; this test was failing on non-darwin platforms due to different X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27059c8ef47e29d6af600cee72c0c0b5e4e4c377;p=clang Force triple; this test was failing on non-darwin platforms due to different asm comment styles (## vs #). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84777 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/2009-10-20-GlobalDebug.c b/test/CodeGen/2009-10-20-GlobalDebug.c index 33d89f1204..eea3fb5307 100644 --- a/test/CodeGen/2009-10-20-GlobalDebug.c +++ b/test/CodeGen/2009-10-20-GlobalDebug.c @@ -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;}