mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-02 07:41:38 +00:00
Add a test to ensure a bitcast/and/trunc combination eliminates the bitcast.
llvm-svn: 31934
This commit is contained in:
parent
aa8f67c2b5
commit
7054676526
14
test/Regression/Transforms/InstCombine/cast-and-cast.ll
Normal file
14
test/Regression/Transforms/InstCombine/cast-and-cast.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep bitcast
|
||||
bool %test1(uint %val) {
|
||||
%t1 = bitcast uint %val to int
|
||||
%t2 = and int %t1, 1
|
||||
%t3 = trunc int %t2 to bool
|
||||
ret bool %t3
|
||||
}
|
||||
|
||||
short %test1(uint %val) {
|
||||
%t1 = bitcast uint %val to int
|
||||
%t2 = and int %t1, 1
|
||||
%t3 = trunc int %t2 to short
|
||||
ret short %t3
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user