diff options
Diffstat (limited to 'test/Transforms/LICM/basictest.ll')
-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 0000000..6458f03 --- /dev/null +++ b/test/Transforms/LICM/basictest.ll @@ -0,0 +1,17 @@ +; RUN: llvm-upgrade < %s | llvm-as | opt -licm | llvm-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 +} |