diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-02 09:59:12 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-02 09:59:12 +0000 |
commit | 9b1a48af8e537255055059b8c51e9f3b2e16473c (patch) | |
tree | 01acf7a9059241758580083c3b2ed156f8262728 | |
parent | 36db2d87163fd3ec422a5d723c3f466bb410288b (diff) |
clang/test/CodeGen/bitfield-promote.c: Add explicit triple for now. It has been failing for big endian targets, for example, ppc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167293 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/bitfield-promote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/bitfield-promote.c b/test/CodeGen/bitfield-promote.c index 93aaa9d8b7..437cd0eb50 100644 --- a/test/CodeGen/bitfield-promote.c +++ b/test/CodeGen/bitfield-promote.c @@ -1,4 +1,4 @@ -// RUN: %clang -O3 -emit-llvm -S -o - %s | FileCheck %s +// RUN: %clang -target i686-unknown-unknown -O3 -emit-llvm -S -o - %s | FileCheck %s long long f0(void) { struct { unsigned f0 : 32; } x = { 18 }; |