From: NAKAMURA Takumi Date: Fri, 25 May 2012 15:12:21 +0000 (+0000) Subject: test/CodeGen/X86/bigstructret.ll: Relax stack offsets for hosts of stack-align=8... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a389a23bbbf1aca280c7104593d8158571dc7756;p=oota-llvm.git test/CodeGen/X86/bigstructret.ll: Relax stack offsets for hosts of stack-align=8, eg. win32 and netbsd. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157471 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/bigstructret.ll b/test/CodeGen/X86/bigstructret.ll index eacbf325220..803b1a50796 100644 --- a/test/CodeGen/X86/bigstructret.ll +++ b/test/CodeGen/X86/bigstructret.ll @@ -34,10 +34,10 @@ entry: } ; CHECK: CallBigStruct2 -; CHECK: leal 16(%esp), {{.*}} +; CHECK: leal {{16|8}}(%esp), {{.*}} ; CHECK: call{{.*}}ReturnBigStruct2 ; CHECK: subl $4, %esp -; CHECK: movl 20(%esp), %eax +; CHECK: movl {{20|12}}(%esp), %eax define fastcc i32 @CallBigStruct2() nounwind readnone { entry: %0 = call %1 @ReturnBigStruct2()