diff options
author | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-05-04 01:01:47 +0000 |
---|---|---|
committer | Jakob Stoklund Olesen <stoklund@2pi.dk> | 2011-05-04 01:01:47 +0000 |
commit | f1b401800a264aa8e1166aaa03da0975a352229a (patch) | |
tree | 5c3abef8067f286fb9d2c509a5e3690ab370496a /llvm/test/CodeGen/X86/x86-64-extend-shift.ll | |
parent | 5b5abb4ea1d7bf10610bac832891deff914cd09c (diff) | |
download | bcm5719-llvm-f1b401800a264aa8e1166aaa03da0975a352229a.tar.gz bcm5719-llvm-f1b401800a264aa8e1166aaa03da0975a352229a.zip |
Don't depend on the physreg coalescing order.
llvm-svn: 130818
Diffstat (limited to 'llvm/test/CodeGen/X86/x86-64-extend-shift.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/x86-64-extend-shift.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/x86-64-extend-shift.ll b/llvm/test/CodeGen/X86/x86-64-extend-shift.ll index 6852785fd6a..6ebaeee3669 100644 --- a/llvm/test/CodeGen/X86/x86-64-extend-shift.ll +++ b/llvm/test/CodeGen/X86/x86-64-extend-shift.ll @@ -2,7 +2,7 @@ ; Formerly there were two shifts. define i64 @baz(i32 %A) nounwind { -; CHECK: shlq $49, %rax +; CHECK: shlq $49, %r %tmp1 = shl i32 %A, 17 %tmp2 = zext i32 %tmp1 to i64 %tmp3 = shl i64 %tmp2, 32 |