Mercurial > hg > CbC > CbC_llvm
view test/CodeGen/PowerPC/reg-names.ll @ 83:60c9769439b8 LLVM3.7
LLVM 3.7
author | Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 18 Feb 2015 14:55:36 +0900 |
parents | 95c75e76d11b |
children | 1172e4bd9c6f |
line wrap: on
line source
; 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 }