[llvm-commits] [llvm] r50171 - /llvm/trunk/test/CodeGen/X86/mingw-alloca.ll

Anton Korobeynikov asl at math.spbu.ru
Wed Apr 23 11:25:16 PDT 2008


Author: asl
Date: Wed Apr 23 13:25:16 2008
New Revision: 50171

URL: http://llvm.org/viewvc/llvm-project?rev=50171&view=rev
Log:
Fix test becase ABI stack alignment dropped to 'normal' value

Modified:
    llvm/trunk/test/CodeGen/X86/mingw-alloca.ll

Modified: llvm/trunk/test/CodeGen/X86/mingw-alloca.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/mingw-alloca.ll?rev=50171&r1=50170&r2=50171&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/mingw-alloca.ll (original)
+++ llvm/trunk/test/CodeGen/X86/mingw-alloca.ll Wed Apr 23 13:25:16 2008
@@ -1,8 +1,8 @@
 ; RUN: llvm-as < %s | llc -o %t -f
 ; RUN: grep __alloca %t | count 2
-; RUN: grep 8028 %t
+; RUN: grep 4294967288 %t
 ; RUN: grep {pushl	%eax} %t
-; RUN: grep 8024 %t | count 2
+; RUN: grep 8012 %t | count 2
 
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64"
 target triple = "i386-mingw32"





More information about the llvm-commits mailing list