r243234 - Try to make the buildbots happy
David Majnemer
david.majnemer at gmail.com
Sat Jul 25 19:16:36 PDT 2015
Author: majnemer
Date: Sat Jul 25 21:16:35 2015
New Revision: 243234
URL: http://llvm.org/viewvc/llvm-project?rev=243234&view=rev
Log:
Try to make the buildbots happy
This test was missing a triple causing it to error out on windows
targets. They accept a much smaller alignment value.
Modified:
cfe/trunk/test/CodeGen/align-global-large.c
Modified: cfe/trunk/test/CodeGen/align-global-large.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/align-global-large.c?rev=243234&r1=243233&r2=243234&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/align-global-large.c (original)
+++ cfe/trunk/test/CodeGen/align-global-large.c Sat Jul 25 21:16:35 2015
@@ -1,5 +1,5 @@
// PR13606 - Clang crashes with large alignment attribute
-// RUN: %clang -S -emit-llvm %s -o - | FileCheck %s
+// RUN: %clang -cc1 -S -emit-llvm %s -o - -triple i686-pc-gnu | FileCheck %s
// CHECK: x
// CHECK: align
More information about the cfe-commits
mailing list