Home | History | Annotate | Download | only in PowerPC
      1 ; REQUIRES: asserts
      2 ; RUN: llc -O0 -debug -o - < %s 2>&1 | FileCheck %s
      3 
      4 target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64"
      5 target triple = "powerpc64-unknown-linux-gnu"
      6 
      7 define i128 @foo() nounwind {
      8 entry:
      9   %x = alloca i128, align 16
     10   store i128 27, i128* %x, align 16
     11   %0 = load i128* %x, align 16
     12   ret i128 %0
     13 }
     14 
     15 ; CHECK: ********** Function: foo
     16 ; CHECK: ********** FAST REGISTER ALLOCATION **********
     17 ; CHECK: %X3<def> = COPY %vreg
     18 ; CHECK-NEXT: %X4<def> = COPY %vreg
     19 ; CHECK-NEXT: BLR
     20