2005-09-26 01:42:03 +00:00
|
|
|
; RUN: llvm-as < %s | opt -globalopt -disable-output &&
|
|
|
|
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
|
|
|
|
|
2005-09-26 04:57:10 +00:00
|
|
|
%llvm.global_ctors = appending global [5 x { int, void ()* }] [
|
2005-09-26 01:42:03 +00:00
|
|
|
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
2005-09-26 04:43:01 +00:00
|
|
|
{ int, void ()* } { int 65535, void ()* %CTOR1 },
|
|
|
|
{ int, void ()* } { int 65535, void ()* %CTOR2 },
|
2005-09-26 04:57:10 +00:00
|
|
|
{ int, void ()* } { int 65535, void ()* %CTOR3 },
|
2005-09-26 04:43:01 +00:00
|
|
|
{ int, void ()* } { int 2147483647, void ()* null }
|
2005-09-26 01:42:03 +00:00
|
|
|
]
|
|
|
|
|
2005-09-26 04:43:01 +00:00
|
|
|
%G = global int 0
|
2005-09-26 04:57:10 +00:00
|
|
|
%G2 = global int 0
|
2005-09-26 04:43:01 +00:00
|
|
|
|
|
|
|
%CTORGV = internal global bool false ;; Should become constant after eval
|
|
|
|
|
2005-09-26 01:42:03 +00:00
|
|
|
implementation
|
|
|
|
|
|
|
|
internal void %CTOR1() { ;; noop ctor, remove.
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2005-09-26 04:43:01 +00:00
|
|
|
internal void %CTOR2() { ;; evaluate the store
|
|
|
|
%A = add int 1, 23
|
|
|
|
store int %A, int* %G
|
|
|
|
store bool true, bool* %CTORGV
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2005-09-26 04:57:10 +00:00
|
|
|
internal void %CTOR3() {
|
|
|
|
%X = or bool true, false
|
|
|
|
br label %Cont
|
|
|
|
Cont:
|
|
|
|
br bool %X, label %S, label %T
|
|
|
|
S:
|
|
|
|
store int 24, int* %G2
|
|
|
|
ret void
|
|
|
|
T:
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2005-09-26 04:43:01 +00:00
|
|
|
bool %accessor() {
|
|
|
|
%V = load bool* %CTORGV ;; constant true
|
|
|
|
ret bool %V
|
|
|
|
}
|