aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/cast-propagate.ll
blob: f3b47301238dda32f180491380b8b8356f83976c (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as < %s | opt -instcombine -mem2reg | llvm-dis | not grep load

int %test1(uint* %P) {
	%A = alloca uint 
	store uint 123, uint* %A
	%Q = cast uint* %A to int*    ; Cast the result of the load not the source
	%V = load int* %Q
	ret int %V
}