diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-10 22:27:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-10 22:27:49 +0000 |
commit | 8672a4eb8cb09a0ef90bf3dc4b3462aff2bd72ae (patch) | |
tree | eb23dcd09ae40441776750ebf7532a9e57639025 | |
parent | ee583d621bbeda969a1c59e6ec41068657793ff3 (diff) |
A basic test that LICM is working
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2610 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/LICM/basictest.ll | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/Transforms/LICM/basictest.ll b/test/Transforms/LICM/basictest.ll new file mode 100644 index 0000000000..f526987fc7 --- /dev/null +++ b/test/Transforms/LICM/basictest.ll @@ -0,0 +1,17 @@ +; RUN: as < %s | opt -licm | dis + +void "testfunc"(int %i) { + + br label %Loop + +Loop: + %j = phi uint [0, %0], [%Next, %Loop] + %i = cast int %i to uint + %i2 = mul uint %i, 17 + %Next = add uint %j, %i2 + %cond = seteq uint %Next, 0 + br bool %cond, label %Out, label %Loop + +Out: + ret void +} |