Home | History | Annotate | Download | only in PowerPC
      1 ; RUN: llc -mcpu=pwr7 < %s | FileCheck %s
      2 target datalayout = "E-m:e-i64:64-n32:64"
      3 target triple = "powerpc-unknown-linux-gnu"
      4 
      5 ; Function Attrs: nounwind
      6 define i32* @test4(i32* readonly %X, i32* nocapture %dest) #0 {
      7   %Y = getelementptr i32, i32* %X, i64 4
      8   %A = load i32, i32* %Y, align 4
      9   store i32 %A, i32* %dest, align 4
     10   ret i32* %Y
     11 
     12 ; CHECK-LABEL: @test4
     13 ; CHECK: lwzu [[REG1:[0-9]+]], 16(3)
     14 ; CHECK: stw [[REG1]], 0(4)
     15 ; CHECK: blr
     16 }
     17 
     18 attributes #0 = { nounwind }
     19 
     20