mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-31 16:02:52 +01:00
e0fb87c3d7
the shift type was needed one place, the shift count type another. The transform in 123555 had the same problem. llvm-svn: 122366
11 lines
283 B
LLVM
11 lines
283 B
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
|
|
; Formerly there were two shifts.
|
|
|
|
define i64 @baz(i32 %A) nounwind {
|
|
; CHECK: shlq $49, %rax
|
|
%tmp1 = shl i32 %A, 17
|
|
%tmp2 = zext i32 %tmp1 to i64
|
|
%tmp3 = shl i64 %tmp2, 32
|
|
ret i64 %tmp3
|
|
}
|