mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Add a test to ensure a bitcast/and/trunc combination eliminates the bitcast.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31934 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bc4cf8d5b1
commit
df2a4ff7d4
14
test/Transforms/InstCombine/cast-and-cast.ll
Normal file
14
test/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…
Reference in New Issue
Block a user