1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/Transforms/InstCombine/cast-propagate.ll
Chris Lattner 37981ce1ff New testcase
llvm-svn: 12783
2004-04-08 20:39:40 +00:00

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
}