mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
make this harder: put some code into it
llvm-svn: 23436
This commit is contained in:
parent
9b71d2a0f6
commit
0952f82b26
@ -1,14 +1,31 @@
|
|||||||
; RUN: llvm-as < %s | opt -globalopt -disable-output &&
|
; RUN: llvm-as < %s | opt -globalopt -disable-output &&
|
||||||
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
|
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
|
||||||
|
|
||||||
%llvm.global_ctors = appending global [2 x { int, void ()* }] [
|
%llvm.global_ctors = appending global [4 x { int, void ()* }] [
|
||||||
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
||||||
{ int, void ()* } { int 65535, void ()* %CTOR1 }
|
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
||||||
|
{ int, void ()* } { int 65535, void ()* %CTOR2 },
|
||||||
|
{ int, void ()* } { int 2147483647, void ()* null }
|
||||||
]
|
]
|
||||||
|
|
||||||
|
%G = global int 0
|
||||||
|
|
||||||
|
%CTORGV = internal global bool false ;; Should become constant after eval
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
internal void %CTOR1() { ;; noop ctor, remove.
|
internal void %CTOR1() { ;; noop ctor, remove.
|
||||||
ret void
|
ret void
|
||||||
}
|
}
|
||||||
|
|
||||||
|
internal void %CTOR2() { ;; evaluate the store
|
||||||
|
%A = add int 1, 23
|
||||||
|
store int %A, int* %G
|
||||||
|
store bool true, bool* %CTORGV
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
bool %accessor() {
|
||||||
|
%V = load bool* %CTORGV ;; constant true
|
||||||
|
ret bool %V
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user