aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/compare-duplicate.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-05-19 00:41:40 +0000
committerChris Lattner <sabre@nondot.org>2007-05-19 00:41:40 +0000
commit35fbae2b6d47932126d1f9bfeaa76ce1a9dbd292 (patch)
tree39e2f61d453972f2639e1380f8c2a8bddcb3de3c /test/CodeGen/PowerPC/compare-duplicate.ll
parent20a4c23bcc958cbc3ce9775b440d205ac0944db8 (diff)
downloadexternal_llvm-35fbae2b6d47932126d1f9bfeaa76ce1a9dbd292.zip
external_llvm-35fbae2b6d47932126d1f9bfeaa76ce1a9dbd292.tar.gz
external_llvm-35fbae2b6d47932126d1f9bfeaa76ce1a9dbd292.tar.bz2
new testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/compare-duplicate.ll')
-rw-r--r--test/CodeGen/PowerPC/compare-duplicate.ll11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/compare-duplicate.ll b/test/CodeGen/PowerPC/compare-duplicate.ll
new file mode 100644
index 0000000..784f2ac
--- /dev/null
+++ b/test/CodeGen/PowerPC/compare-duplicate.ll
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc | not grep slwi
+
+define i32 @test(i32 %A, i32 %B) {
+ %C = sub i32 %B, %A
+ %D = icmp eq i32 %C, %A
+ br i1 %D, label %T, label %F
+T:
+ ret i32 19123
+F:
+ ret i32 %C
+}