Mercurial > hg > CbC > CbC_llvm
view test/CodeGen/PowerPC/arr-fp-arg-no-copy.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 | |
children | 1172e4bd9c6f |
line wrap: on
line source
; RUN: llc -mcpu=ppc64 < %s | FileCheck %s target datalayout = "E-m:e-i64:64-n32:64" target triple = "powerpc64-unknown-linux-gnu" ; Function Attrs: nounwind define void @bar() #0 { entry: tail call void @xxx([2 x i64] [i64 4607182418800017408, i64 4611686018427387904]) #0 ret void ; CHECK-LABEL: @bar ; CHECK-DAG: li [[REG1:[0-9]+]], 1023 ; CHECK-DAG: li [[REG2:[0-9]+]], {{1$}} ; CHECK-DAG: sldi 3, [[REG1]], 52 ; CHECK-DAG: sldi 4, [[REG2]], 62 ; CHECK: bl xxx ; CHECK: blr } declare void @xxx([2 x i64]) attributes #0 = { nounwind }