aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2009-10-21 19:59:43 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2009-10-21 19:59:43 +0000
commit27059c8ef47e29d6af600cee72c0c0b5e4e4c377 (patch)
tree5ba68381edbb1557f599de258eb642fb75ef6af1
parenta63629930177da7a0eb99c3fdfb35d8618808ca1 (diff)
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
-rw-r--r--test/CodeGen/2009-10-20-GlobalDebug.c2
1 files changed, 1 insertions, 1 deletions
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;}