[cfe-commits] r167293 - /cfe/trunk/test/CodeGen/bitfield-promote.c
NAKAMURA Takumi
geek4civic at gmail.com
Fri Nov 2 02:59:12 PDT 2012
Author: chapuni
Date: Fri Nov 2 04:59:12 2012
New Revision: 167293
URL: http://llvm.org/viewvc/llvm-project?rev=167293&view=rev
Log:
clang/test/CodeGen/bitfield-promote.c: Add explicit triple for now. It has been failing for big endian targets, for example, ppc.
Modified:
cfe/trunk/test/CodeGen/bitfield-promote.c
Modified: cfe/trunk/test/CodeGen/bitfield-promote.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/bitfield-promote.c?rev=167293&r1=167292&r2=167293&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/bitfield-promote.c (original)
+++ cfe/trunk/test/CodeGen/bitfield-promote.c Fri Nov 2 04:59:12 2012
@@ -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 };
More information about the cfe-commits
mailing list