mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 23:48:49 +00:00
ec9a35a6f9
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47793 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
340 B
LLVM
12 lines
340 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep shl
|
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | notcast
|
|
|
|
; This cannot be turned into a sign extending cast!
|
|
|
|
define i64 @test(i64 %X) {
|
|
%Y = shl i64 %X, 16 ; <i64> [#uses=1]
|
|
%Z = ashr i64 %Y, 16 ; <i64> [#uses=1]
|
|
ret i64 %Z
|
|
}
|
|
|