A basic test that LICM is working
authorChris Lattner <sabre@nondot.org>
Fri, 10 May 2002 22:27:49 +0000 (22:27 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 10 May 2002 22:27:49 +0000 (22:27 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2610 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/LICM/basictest.ll [new file with mode: 0644]

diff --git a/test/Transforms/LICM/basictest.ll b/test/Transforms/LICM/basictest.ll
new file mode 100644 (file)
index 0000000..f526987
--- /dev/null
@@ -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
+}