~pali/+junk/llvm-toolchain-3.7

« back to all changes in this revision

Viewing changes to test/CodeGen/PowerPC/ld-st-upd.ll

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2015-07-15 17:51:08 UTC
  • Revision ID: package-import@ubuntu.com-20150715175108-l8mynwovkx4zx697
Tags: upstream-3.7~+rc2
ImportĀ upstreamĀ versionĀ 3.7~+rc2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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