blob: dafd4e000dfa02b5a6b0c30fe713f44fcad66cdc (
plain)
1
2
3
4
5
6
7
8
9
10
|
; This testcase should have the cast propogated through the load
; just like a store does...
;
; RUN: as < %s | opt -raise | dis | grep ' cast ' | not grep '*'
int "test"(uint * %Ptr) {
%P2 = cast uint *%Ptr to int *
%Val = load int * %P2
ret int %Val
}
|