[llvm-commits] CVS: llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll
Chris Lattner
lattner at cs.uiuc.edu
Sun Sep 25 22:14:59 PDT 2005
Changes in directory llvm/test/Regression/Transforms/GlobalOpt:
ctor-list-opt.ll updated: 1.3 -> 1.4
---
Log message:
add a test for load
---
Diffs of the changes: (+10 -1)
ctor-list-opt.ll | 11 ++++++++++-
1 files changed, 10 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.3 llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll:1.4
--- llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll:1.3 Sun Sep 25 23:57:10 2005
+++ llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll Mon Sep 26 00:14:48 2005
@@ -1,16 +1,18 @@
; RUN: llvm-as < %s | opt -globalopt -disable-output &&
; RUN: llvm-as < %s | opt -globalopt | llvm-dis | not grep CTOR
-%llvm.global_ctors = appending global [5 x { int, void ()* }] [
+%llvm.global_ctors = appending global [6 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 65535, void ()* %CTOR4 },
{ int, void ()* } { int 2147483647, void ()* null }
]
%G = global int 0
%G2 = global int 0
+%G3 = global int -123
%CTORGV = internal global bool false ;; Should become constant after eval
@@ -39,6 +41,13 @@
ret void
}
+internal void %CTOR4() {
+ %X = load int* %G3
+ %Y = add int %X, 123
+ store int %Y, int* %G3
+ ret void
+}
+
bool %accessor() {
%V = load bool* %CTORGV ;; constant true
ret bool %V
More information about the llvm-commits
mailing list