clang/test/CodeGen/bitfield-promote.c: Add explicit triple for now. It has been failing for big endian targets, for example, ppc.

llvm-svn: 167293
This commit is contained in:
NAKAMURA Takumi 2012-11-02 09:59:12 +00:00
parent 510db83782
commit 51466d7622
1 changed files with 1 additions and 1 deletions

View File

@ -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 };