aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/inverted-bool-compares.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/inverted-bool-compares.ll')
-rw-r--r--test/CodeGen/PowerPC/inverted-bool-compares.ll13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGen/PowerPC/inverted-bool-compares.ll b/test/CodeGen/PowerPC/inverted-bool-compares.ll
deleted file mode 100644
index 4b964b7c8114..000000000000
--- a/test/CodeGen/PowerPC/inverted-bool-compares.ll
+++ /dev/null
@@ -1,13 +0,0 @@
-; RUN: llc -verify-machineinstrs < %s -march=ppc32 | not grep xori
-
-define i32 @test(i1 %B, i32* %P) {
- br i1 %B, label %T, label %F
-
-T: ; preds = %0
- store i32 123, i32* %P
- ret i32 0
-
-F: ; preds = %0
- ret i32 17
-}
-