2013-02-26 21:28:57 +00:00
|
|
|
; RUN: llc -mtriple="powerpc-unknown-linux-gnu" < %s | FileCheck %s --check-prefix=PPC32
|
|
|
|
; RUN: llc -mtriple="powerpc64-unknown-linux-gnu" < %s | FileCheck %s --check-prefix=PPC64
|
|
|
|
; PR15332
|
|
|
|
|
|
|
|
define void @regalloc() nounwind {
|
|
|
|
entry:
|
|
|
|
%0 = add i32 1, 2
|
|
|
|
ret void
|
|
|
|
}
|
2013-07-14 06:24:09 +00:00
|
|
|
; PPC32-LABEL: regalloc:
|
2013-02-26 21:28:57 +00:00
|
|
|
; PPC32-NOT: stwu 1, -{{[0-9]+}}(1)
|
|
|
|
; PPC32: blr
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; PPC64-LABEL: regalloc:
|
2013-02-26 21:28:57 +00:00
|
|
|
; PPC64-NOT: stdu 1, -{{[0-9]+}}(1)
|
|
|
|
; PPC64: blr
|
|
|
|
|
|
|
|
define void @smallstack() nounwind {
|
|
|
|
entry:
|
|
|
|
%0 = alloca i8, i32 4
|
|
|
|
ret void
|
|
|
|
}
|
2013-07-14 06:24:09 +00:00
|
|
|
; PPC32-LABEL: smallstack:
|
2013-02-26 21:28:57 +00:00
|
|
|
; PPC32: stwu 1, -16(1)
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; PPC64-LABEL: smallstack:
|
2013-02-26 21:28:57 +00:00
|
|
|
; PPC64-NOT: stdu 1, -{{[0-9]+}}(1)
|
|
|
|
; PPC64: blr
|
|
|
|
|
|
|
|
define void @bigstack() nounwind {
|
|
|
|
entry:
|
|
|
|
%0 = alloca i8, i32 230
|
|
|
|
ret void
|
|
|
|
}
|
2013-07-14 06:24:09 +00:00
|
|
|
; PPC32-LABEL: bigstack:
|
2013-02-26 21:28:57 +00:00
|
|
|
; PPC32: stwu 1, -240(1)
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; PPC64-LABEL: bigstack:
|
2014-06-23 13:47:52 +00:00
|
|
|
; PPC64: stdu 1, -288(1)
|