You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
361 B
18 lines
361 B
; RUN: llc -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s
|
|
; RUN: llc -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
|
|
}
|
|
|