aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/enum.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-02-03 21:54:49 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-02-03 21:54:49 +0000
commit0d7b091ffd100ca2cf51c686635a5d2bfbbad639 (patch)
treee39c448e92cba5d256eecb1cfd21120f76e441f6 /test/CodeGen/enum.c
parent37629a4142b612f69990f4f174720e51b4c3c11d (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/enum.c')
-rw-r--r--test/CodeGen/enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/enum.c b/test/CodeGen/enum.c
index c8641926ee..50b558d250 100644
--- a/test/CodeGen/enum.c
+++ b/test/CodeGen/enum.c
@@ -1,4 +1,4 @@
-// RUN: clang %s -emit-llvm-bc -o - | opt -std-compile-opts | llvm-dis | grep 'ret i32 6'
+// RUN: clang -triple i386-unknown-unknown %s -emit-llvm-bc -o - | opt -std-compile-opts | llvm-dis | grep 'ret i32 6'
static enum { foo, bar = 1U } z;