aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/reg-names.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/PowerPC/reg-names.ll')
-rw-r--r--test/CodeGen/PowerPC/reg-names.ll17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/CodeGen/PowerPC/reg-names.ll b/test/CodeGen/PowerPC/reg-names.ll
deleted file mode 100644
index 0ad11312513b..000000000000
--- a/test/CodeGen/PowerPC/reg-names.ll
+++ /dev/null
@@ -1,17 +0,0 @@
-; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s
-; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -ppc-asm-full-reg-names < %s | FileCheck -check-prefix=CHECK-FN %s
-
-define i64 @test1(i64 %a, i64 %b) {
-; CHECK-LABEL: @test1
-; CHECK-FN-LABEL: @test1
-
-entry:
- ret i64 %b
-
-; CHECK: mr 3, 4
-; CHECK-FN: mr r3, r4
-
-; CHECK: blr
-; CHECK-FN: blr
-}
-