[LLVM][Alignment] Make functions using log of alignment explicit
[llvm-complete.git] / test / CodeGen / PowerPC / reg-names.ll
blob70c3b6087d4898a60d51ff7381dc599c18ca2ec1
1 ; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s
2 ; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -ppc-asm-full-reg-names < %s | FileCheck -check-prefix=CHECK-FN %s
3 ; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -ppc-reg-with-percent-prefix < %s | FileCheck -check-prefix=CHECK-PN %s
5 define i64 @test1(i64 %a, i64 %b) {
6 ; CHECK-LABEL: @test1
7 ; CHECK-FN-LABEL: @test1
9 entry:
10   ret i64 %b
12 ; CHECK: mr 3, 4
13 ; CHECK-FN: mr r3, r4
14 ; CHECK-PN: mr %r3, %r4
16 ; CHECK: blr
17 ; CHECK-FN: blr
18 ; CHECK-PN: blr