[llvm-commits] [llvm] r88997 - /llvm/trunk/test/CodeGen/X86/tailcallstack64.ll
Dan Gohman
gohman at apple.com
Mon Nov 16 15:43:43 PST 2009
Author: djg
Date: Mon Nov 16 17:43:42 2009
New Revision: 88997
URL: http://llvm.org/viewvc/llvm-project?rev=88997&view=rev
Log:
Revert r87049, which was the workaround for the regression triggered
by the recent FixedStackPseudoSourceValue-related changes, now that
the specific bug that affected it is fixed, in r88954.
Modified:
llvm/trunk/test/CodeGen/X86/tailcallstack64.ll
Modified: llvm/trunk/test/CodeGen/X86/tailcallstack64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/tailcallstack64.ll?rev=88997&r1=88996&r2=88997&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/tailcallstack64.ll (original)
+++ llvm/trunk/test/CodeGen/X86/tailcallstack64.ll Mon Nov 16 17:43:42 2009
@@ -5,10 +5,10 @@
; CHECK: movl %edi, %eax
; Move param %in1 to temp register (%r10d).
; CHECK: movl 40(%rsp), %r10d
-; Move result of addition to stack.
-; CHECK: movl %eax, 40(%rsp)
; Move param %in2 to stack.
; CHECK: movl %r10d, 32(%rsp)
+; Move result of addition to stack.
+; CHECK: movl %eax, 40(%rsp)
; Eventually, do a TAILCALL
; CHECK: TAILCALL
More information about the llvm-commits
mailing list