; RUN: llvm-as < %s | opt -globalopt -disable-output &&
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
-%llvm.global_ctors = appending global [8 x { int, void ()* }] [
+%llvm.global_ctors = appending global [9 x { int, void ()* }] [
{ int, void ()* } { int 65535, void ()* %CTOR1 },
{ int, void ()* } { int 65535, void ()* %CTOR1 },
{ int, void ()* } { int 65535, void ()* %CTOR2 },
{ int, void ()* } { int 65535, void ()* %CTOR4 },
{ int, void ()* } { int 65535, void ()* %CTOR5 },
{ int, void ()* } { int 65535, void ()* %CTOR6 },
+ { int, void ()* } { int 65535, void ()* %CTOR7 },
{ int, void ()* } { int 2147483647, void ()* null }
]
%Y = global int -1
+%Z = global int 123
+
%CTORGV = internal global bool false ;; Should become constant after eval
implementation
ret void
}
+internal void %CTOR7() {
+ call void %setto(int* %Z, int 0)
+ ret void
+}
+
+void %setto(int* %P, int %V) {
+ store int %V, int* %P
+ ret void
+}
+
bool %accessor() {
%V = load bool* %CTORGV ;; constant true
ret bool %V