diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/pr14088.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/pr14088.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/pr14088.ll b/llvm/test/CodeGen/X86/pr14088.ll index 7041d143238..505e3b5cf26 100644 --- a/llvm/test/CodeGen/X86/pr14088.ll +++ b/llvm/test/CodeGen/X86/pr14088.ll @@ -20,6 +20,6 @@ return: } ; We were miscompiling this and using %ax instead of %cx in the movw. -; CHECK: movw %ax, (%rsi) -; CHECK: movswl %ax, %eax -; CHECK: movslq %eax, %rax +; CHECK: movswl %cx, %ecx +; CHECK: movw %cx, (%rsi) +; CHECK: movslq %ecx, %rcx |