diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-27 04:44:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-27 04:44:04 +0000 |
commit | 93a900111faf07926e46a8ee0b8e39db57c11036 (patch) | |
tree | 7895fdde322fcd48fbc7a73583222620029c16f8 | |
parent | 8a7cc6e71ca9bedf97abfae2ec9a5e9af212dc15 (diff) |
Add a more difficult testcase which uses a call to a helper function to do
the initialization
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23461 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/GlobalOpt/ctor-list-opt.ll | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/test/Transforms/GlobalOpt/ctor-list-opt.ll b/test/Transforms/GlobalOpt/ctor-list-opt.ll index d785611d1e..26ac706179 100644 --- a/test/Transforms/GlobalOpt/ctor-list-opt.ll +++ b/test/Transforms/GlobalOpt/ctor-list-opt.ll @@ -1,7 +1,7 @@ ; 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 }, @@ -9,6 +9,7 @@ { 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 } ] @@ -20,6 +21,8 @@ %Y = global int -1 +%Z = global int 123 + %CTORGV = internal global bool false ;; Should become constant after eval implementation @@ -73,6 +76,16 @@ internal void %CTOR6() { 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 |