mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 07:59:57 +00:00
69ccadd753
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32115 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
386 B
LLVM
16 lines
386 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | not grep 34
|
|
|
|
int %test(int %X) {
|
|
; Do not fold into shr X, 34, as this uses undefined behavior!
|
|
%Y = shr int %X, ubyte 17
|
|
%Z = shr int %Y, ubyte 17
|
|
ret int %Z
|
|
}
|
|
|
|
int %test2(int %X) {
|
|
; Do not fold into shl X, 34, as this uses undefined behavior!
|
|
%Y = shl int %X, ubyte 17
|
|
%Z = shl int %Y, ubyte 17
|
|
ret int %Z
|
|
}
|