[llvm-commits] CVS: llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll
Chris Lattner
lattner at cs.uiuc.edu
Sun Sep 25 21:57:21 PDT 2005
Changes in directory llvm/test/Regression/Transforms/GlobalOpt:
ctor-list-opt.ll updated: 1.2 -> 1.3
---
Log message:
add another testcase with simple control flow
---
Diffs of the changes: (+15 -1)
ctor-list-opt.ll | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletion(-)
Index: llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll
diff -u llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll:1.2 llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll:1.3
--- llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll:1.2 Sun Sep 25 23:43:01 2005
+++ llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll Sun Sep 25 23:57:10 2005
@@ -1,14 +1,16 @@
; RUN: llvm-as < %s | opt -globalopt -disable-output &&
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
-%llvm.global_ctors = appending global [4 x { int, void ()* }] [
+%llvm.global_ctors = appending global [5 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 ()* %CTOR3 },
{ int, void ()* } { int 2147483647, void ()* null }
]
%G = global int 0
+%G2 = global int 0
%CTORGV = internal global bool false ;; Should become constant after eval
@@ -25,6 +27,18 @@
ret void
}
+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
+}
+
bool %accessor() {
%V = load bool* %CTORGV ;; constant true
ret bool %V
More information about the llvm-commits
mailing list