[llvm-commits] [dragonegg] r171661 - /dragonegg/trunk/test/validator/c/2012-06-05-Alloca.c

Duncan Sands baldrick at free.fr
Sun Jan 6 09:06:23 PST 2013


Author: baldrick
Date: Sun Jan  6 11:06:22 2013
New Revision: 171661

URL: http://llvm.org/viewvc/llvm-project?rev=171661&view=rev
Log:
Arrange for this to pass on 32 bit platforms as well as 64 bit.

Modified:
    dragonegg/trunk/test/validator/c/2012-06-05-Alloca.c

Modified: dragonegg/trunk/test/validator/c/2012-06-05-Alloca.c
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/test/validator/c/2012-06-05-Alloca.c?rev=171661&r1=171660&r2=171661&view=diff
==============================================================================
--- dragonegg/trunk/test/validator/c/2012-06-05-Alloca.c (original)
+++ dragonegg/trunk/test/validator/c/2012-06-05-Alloca.c Sun Jan  6 11:06:22 2013
@@ -7,6 +7,6 @@
 void foo(int n, int i) {
 // CHECK: foo
   int a[n];
-// CHECK: alloca i8, i64 {{.*}}, align 4
+// CHECK: alloca i8, i{{.*}}, align 4
   use(&a[i]);
 }





More information about the llvm-commits mailing list