aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/ppc32-i1-vaarg.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/ppc32-i1-vaarg.ll')
-rw-r--r--test/CodeGen/PowerPC/ppc32-i1-vaarg.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGen/PowerPC/ppc32-i1-vaarg.ll b/test/CodeGen/PowerPC/ppc32-i1-vaarg.ll
deleted file mode 100644
index 635a0e7fc1fe..000000000000
--- a/test/CodeGen/PowerPC/ppc32-i1-vaarg.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mcpu=ppc32 | FileCheck %s
-; RUN: llc -verify-machineinstrs < %s -march=ppc32 -mcpu=ppc32 -mtriple=powerpc-darwin9 | FileCheck %s -check-prefix=CHECK-D
-target triple = "powerpc-unknown-linux-gnu"
-
-declare void @printf(i8*, ...)
-
-define void @main() {
- call void (i8*, ...) @printf(i8* undef, i1 false)
- ret void
-}
-
-; CHECK-LABEL: @main
-; CHECK-DAG: li 4, 0
-; CHECK-DAG: crxor 6, 6, 6
-; CHECK: bl printf
-
-; CHECK-D-LABEL: @main
-; CHECK-D: li r4, 0
-; CHECK-D: bl _printf
-