mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-08 12:21:04 +00:00
c49d7dd886
Upgrade tests to work with new llvm.exp version of llvm_runtest. llvm-svn: 36013
11 lines
298 B
LLVM
11 lines
298 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep shl
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | notcast
|
|
|
|
; This cannot be turned into a sign extending cast!
|
|
|
|
long %test(long %X) {
|
|
%Y = shl long %X, ubyte 16
|
|
%Z = shr long %Y, ubyte 16
|
|
ret long %Z
|
|
}
|