mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
New testcase that crashes -globalopt. I found this through inspection, not
actually in the wild :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16877 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c4d81b0388
commit
b3deddcf25
17
test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx
Normal file
17
test/Transforms/GlobalOpt/2004-10-10-CastStoreOnce.llx
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
; 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
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user