diff options
-rw-r--r-- | test/CodeGen/X86/tailcallstack64.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/tailcallstack64.ll b/test/CodeGen/X86/tailcallstack64.ll index 69018aa13d..064219d97d 100644 --- a/test/CodeGen/X86/tailcallstack64.ll +++ b/test/CodeGen/X86/tailcallstack64.ll @@ -5,10 +5,10 @@ ; CHECK: movl %edi, %eax ; Move param %in1 to temp register (%r10d). ; CHECK: movl 40(%rsp), %r10d -; Move param %in2 to stack. -; CHECK: movl %r10d, 32(%rsp) ; Move result of addition to stack. ; CHECK: movl %eax, 40(%rsp) +; Move param %in2 to stack. +; CHECK: movl %r10d, 32(%rsp) ; Eventually, do a TAILCALL ; CHECK: TAILCALL |