commit | 0d7b091ffd100ca2cf51c686635a5d2bfbbad639 | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Tue Feb 03 21:54:49 2009 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Tue Feb 03 21:54:49 2009 +0000 |
tree | e39c448e92cba5d256eecb1cfd21120f76e441f6 | |
parent | 37629a4142b612f69990f4f174720e51b4c3c11d [diff] [blame] |
Force triple for codegen tests which have expectations on output types. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63669 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/kr-func-promote.c b/test/CodeGen/kr-func-promote.c index a20532a..2b55a39 100644 --- a/test/CodeGen/kr-func-promote.c +++ b/test/CodeGen/kr-func-promote.c
@@ -1,4 +1,4 @@ -// RUN: clang %s -emit-llvm -o - | grep "i32 @a(i32)" +// RUN: clang -triple i386-unknown-unknown %s -emit-llvm -o - | grep "i32 @a(i32)" int a(); int a(x) short x; {return x;}