mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
37981ce1ff
llvm-svn: 12783
10 lines
268 B
LLVM
10 lines
268 B
LLVM
; RUN: llvm-as < cast-propagate.ll | 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
|
|
}
|