1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx
Chris Lattner 644e8db5d7 New testcase that crashes -globalopt. I found this through inspection, not
actually in the wild :)

llvm-svn: 16877
2004-10-10 17:06:09 +00:00

18 lines
247 B
Plaintext

; RUN: llvm-as < %s | opt -globalopt
%V = global float 12.0
%G = internal global int* null
int %user() {
%P = load int** %G
%Q = load int* %P
ret int %Q
}
void %setter() {
%Vi = cast float* %V to int*
store int* %Vi, int** %G
ret void
}