diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-21 19:59:43 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-21 19:59:43 +0000 |
commit | 53b40411516941ba1fd429cea2a63e2319ea13b2 (patch) | |
tree | 05ec05e419c61e381a3015d30e1da2258b8e2bdb | |
parent | 9e92857b3880b448b3ea9508ded31e97f4a11126 (diff) | |
download | bcm5719-llvm-53b40411516941ba1fd429cea2a63e2319ea13b2.tar.gz bcm5719-llvm-53b40411516941ba1fd429cea2a63e2319ea13b2.zip |
Force triple; this test was failing on non-darwin platforms due to different
asm comment styles (## vs #).
llvm-svn: 84777
-rw-r--r-- | clang/test/CodeGen/2009-10-20-GlobalDebug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/2009-10-20-GlobalDebug.c b/clang/test/CodeGen/2009-10-20-GlobalDebug.c index 33d89f12046..eea3fb5307b 100644 --- a/clang/test/CodeGen/2009-10-20-GlobalDebug.c +++ b/clang/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;} |