summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/cast-propagate.ll
blob: d4f07a4d842e7297d389a74790bdbdd5463c60e5 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-upgrade < %s | llvm-as | 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
}