mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-25 21:16:19 +00:00
New testcase
llvm-svn: 12783
This commit is contained in:
parent
f6b16ea70b
commit
37981ce1ff
9
test/Regression/Transforms/InstCombine/cast-propagate.ll
Normal file
9
test/Regression/Transforms/InstCombine/cast-propagate.ll
Normal file
@ -0,0 +1,9 @@
|
||||
; 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user