summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-09-27 05:02:03 +0000
committerChris Lattner <sabre@nondot.org>2005-09-27 05:02:03 +0000
commit1f1fd227fb60c12e771067d0c5b9b41d8f30f10c (patch)
tree8eb34890f13fa30b60607e2619e462e7e902adf5
parent29b2780c8afef53cc2a71ac64a77e57b645a7ca3 (diff)
downloadbcm5719-llvm-1f1fd227fb60c12e771067d0c5b9b41d8f30f10c.tar.gz
bcm5719-llvm-1f1fd227fb60c12e771067d0c5b9b41d8f30f10c.zip
add a new testcase for constant foldable calls
llvm-svn: 23464
-rw-r--r--llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll14
1 files changed, 10 insertions, 4 deletions
diff --git a/llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll b/llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll
index 26ac7061792..f402fac106c 100644
--- a/llvm/test/Regression/Transforms/GlobalOpt/ctor-list-opt.ll
+++ b/llvm/test/Regression/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 [9 x { int, void ()* }] [
+%llvm.global_ctors = appending global [10 x { int, void ()* }] [
{ int, void ()* } { int 65535, void ()* %CTOR1 },
{ int, void ()* } { int 65535, void ()* %CTOR1 },
{ int, void ()* } { int 65535, void ()* %CTOR2 },
@@ -10,18 +10,17 @@
{ int, void ()* } { int 65535, void ()* %CTOR5 },
{ int, void ()* } { int 65535, void ()* %CTOR6 },
{ int, void ()* } { int 65535, void ()* %CTOR7 },
+ { int, void ()* } { int 65535, void ()* %CTOR8 },
{ int, void ()* } { int 2147483647, void ()* null }
]
%G = global int 0
%G2 = global int 0
%G3 = global int -123
-
%X = global {int, [2 x int]} { int 0, [2 x int] [ int 17, int 21] }
-
%Y = global int -1
-
%Z = global int 123
+%D = global double 0.0
%CTORGV = internal global bool false ;; Should become constant after eval
@@ -86,6 +85,13 @@ void %setto(int* %P, int %V) {
ret void
}
+declare double %cos(double)
+
+internal void %CTOR8() {
+ %X = call double %cos(double 1.0)
+ store double %X, double* %D
+ ret void
+}
bool %accessor() {
%V = load bool* %CTORGV ;; constant true
ret bool %V
OpenPOWER on IntegriCloud