aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/binop-cast.ll
blob: ee43fe00d169bc9c5881466f7175f67acfb39105 (plain)
1
2
3
4
5
6
7
; RUN: opt < %s -instcombine -S | notcast

define i32 @testAdd(i32 %X, i32 %Y) {
	%tmp = add i32 %X, %Y
	%tmp.l = bitcast i32 %tmp to i32
	ret i32 %tmp.l
}