diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-08 20:34:25 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-11-08 20:34:25 +0000 |
commit | c4497036cff93da286ae188cfd95aa3f01390c61 (patch) | |
tree | 650dd340411ffa45aa5fe57dc59c28f26434778a | |
parent | 4f056ac7f8d837822dbf8ab7cdd6849a9b0ad12f (diff) |
llvm/ConstantFolding.cpp: Make ReadDataFromGlobal() and FoldReinterpretLoadFromConstPtr() Big-endian-aware.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167595 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 437cd0eb50..93aaa9d8b7 100644 --- a/test/CodeGen/bitfield-promote.c +++ b/test/CodeGen/bitfield-promote.c @@ -1,4 +1,4 @@ -// RUN: %clang -target i686-unknown-unknown -O3 -emit-llvm -S -o - %s | FileCheck %s +// RUN: %clang -O3 -emit-llvm -S -o - %s | FileCheck %s long long f0(void) { struct { unsigned f0 : 32; } x = { 18 }; |