aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/LevelRaise/2002-05-10-LoadPeephole.ll
blob: 7e9c713babc542e353687ebf8e76ee6037af6e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; This testcase should have the cast propogated through the load
; just like a store does...
;
; RUN: if as < %s | opt -raise | dis | grep ' cast ' | grep '*'
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi

int "test"(uint * %Ptr) {
	%P2 = cast uint *%Ptr to int *
	%Val = load int * %P2
	ret int %Val
}