1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s -check-prefix=PPC32
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s -check-prefix=PPC64
7 ; PPC32: stwu 1, -[[STACK:[0-9]+]](1)
8 ; PPC32: lwz [[REG:[0-9]+]], [[RETADDR:[0-9]+]](1)
9 ; PPC32: stw [[REG]], 0(3)
10 ; PPC32: lwz 0, [[RETADDR]](1)
11 ; PPC32: addi 1, 1, [[STACK]]
17 ; PPC64: std 0, [[RETADDR:[0-9]+]]
18 ; PPC64: stdu 1, -[[STACK:[0-9]+]]
19 ; PPC64: ld [[REG:[0-9]+]]
20 ; PPC64: std [[REG]], 0(3)
21 ; PPC64: addi 1, 1, [[STACK]]
22 ; PPC64: ld 0, [[RETADDR]]
26 define void @foo(i8** %X) nounwind {
28 %tmp = tail call i8* @llvm.returnaddress( i32 0 ) ; <i8*> [#uses=1]
29 store i8* %tmp, i8** %X, align 4
33 declare i8* @llvm.returnaddress(i32)