diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-02 20:41:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-02 20:41:39 +0000 |
commit | 830b5290d0c35ef887e8125a05d88d9f4f92b0df (patch) | |
tree | 6c6f1255ad085135e41d702666bf09eb9c0e267b /llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll | |
parent | 5364d1a74ae584d0e3a008e59e82061b657a8d15 (diff) | |
download | bcm5719-llvm-830b5290d0c35ef887e8125a05d88d9f4f92b0df.tar.gz bcm5719-llvm-830b5290d0c35ef887e8125a05d88d9f4f92b0df.zip |
More testcases for SCCP
llvm-svn: 2444
Diffstat (limited to 'llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll')
-rw-r--r-- | llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll b/llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll new file mode 100644 index 00000000000..341847bc13a --- /dev/null +++ b/llvm/test/Regression/Transforms/SCCP/2002-05-02-EdgeFailure.ll @@ -0,0 +1,28 @@ +; edgefailure - This function illustrates how SCCP is not doing it's job. This +; function should be optimized almost completely away: the loop should be +; analyzed to detect that the body executes exactly once, and thus the branch +; can be eliminated and code becomes trivially dead. This is distilled from a +; real benchmark (mst from Olden benchmark, MakeGraph function). When SCCP is +; fixed, this should be eliminated by a single SCCP application. +; +; RUN: if as < %s | opt -sccp | dis | grep loop +; RUN: then exit 1 +; RUN: else exit 0 +; RUN: fi + +int *"test"() +begin +bb1: + %A = malloc int + br label %bb2 +bb2: + %i = phi int [ %i2, %bb2 ], [ 0, %bb1 ] ;; Always 0 + %i2 = add int %i, 1 ;; Always 1 + store int %i, int *%A + %loop = setle int %i2, 0 ;; Always false + br bool %loop, label %bb2, label %bb3 + +bb3: + ret int * %A +end + |