[cfe-commits] r65252 - in /cfe/trunk/test: CodeGen/const-init.c Sema/static-init.c

Daniel Dunbar daniel at zuster.org
Sat Feb 21 15:45:41 PST 2009


Author: ddunbar
Date: Sat Feb 21 17:45:41 2009
New Revision: 65252

URL: http://llvm.org/viewvc/llvm-project?rev=65252&view=rev
Log:
Force arch for these test cases.

Modified:
    cfe/trunk/test/CodeGen/const-init.c
    cfe/trunk/test/Sema/static-init.c

Modified: cfe/trunk/test/CodeGen/const-init.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/const-init.c?rev=65252&r1=65251&r2=65252&view=diff

==============================================================================
--- cfe/trunk/test/CodeGen/const-init.c (original)
+++ cfe/trunk/test/CodeGen/const-init.c Sat Feb 21 17:45:41 2009
@@ -1,4 +1,4 @@
-// RUN: clang -verify -emit-llvm -o %t %s &&
+// RUN: clang -arch i386 -verify -emit-llvm -o %t %s &&
 
 #include <stdint.h>
 

Modified: cfe/trunk/test/Sema/static-init.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/static-init.c?rev=65252&r1=65251&r2=65252&view=diff

==============================================================================
--- cfe/trunk/test/Sema/static-init.c (original)
+++ cfe/trunk/test/Sema/static-init.c Sat Feb 21 17:45:41 2009
@@ -1,4 +1,4 @@
-// RUN: clang -fsyntax-only -verify %s
+// RUN: clang -arch i386 -fsyntax-only -verify %s
 static int f = 10;
 static int b = f; // expected-error {{initializer element is not a compile-time constant}}
 





More information about the cfe-commits mailing list