blob: 1e2ca0e0e9d460718ea71870f8226410f5cf7370 [file] [log] [blame]
; This testcase should have the cast propogated through the load
; just like a store does...
;
; RUN: llvm-as < %s | opt -raise | llvm-dis | grep ' cast ' | not grep '*'
int "test"(uint * %Ptr) {
%P2 = cast uint *%Ptr to int *
%Val = load int * %P2
ret int %Val
}