diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 21:54:49 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-02-03 21:54:49 +0000 |
commit | 0d7b091ffd100ca2cf51c686635a5d2bfbbad639 (patch) | |
tree | e39c448e92cba5d256eecb1cfd21120f76e441f6 /test/CodeGen/function-attributes.c | |
parent | 37629a4142b612f69990f4f174720e51b4c3c11d (diff) |
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
Diffstat (limited to 'test/CodeGen/function-attributes.c')
-rw-r--r-- | test/CodeGen/function-attributes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/function-attributes.c b/test/CodeGen/function-attributes.c index c09b2af9f4..dacfdd9675 100644 --- a/test/CodeGen/function-attributes.c +++ b/test/CodeGen/function-attributes.c @@ -1,4 +1,4 @@ -// RUN: clang -emit-llvm -o %t %s && +// RUN: clang -triple i386-unknown-unknown -emit-llvm -o %t %s && // RUN: grep 'define signext i8 @f0(i32 %x) nounwind' %t && // RUN: grep 'define zeroext i8 @f1(i32 %x) nounwind' %t && // RUN: grep 'define void @f2(i8 signext %x) nounwind' %t && |