2009-09-12 02:36:27 +08:00
|
|
|
; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -o %t1
|
2011-03-10 06:07:31 +08:00
|
|
|
; RUN: not grep {stw r31, -4(r1)} %t1
|
2007-04-16 05:17:45 +08:00
|
|
|
; RUN: grep {stwu r1, -16448(r1)} %t1
|
|
|
|
; RUN: grep {addi r1, r1, 16448} %t1
|
2009-09-12 02:36:27 +08:00
|
|
|
; RUN: llc < %s -march=ppc32 | \
|
2009-11-25 06:59:02 +08:00
|
|
|
; RUN: not grep {lwz r31, -4(r1)}
|
2009-09-12 02:36:27 +08:00
|
|
|
; RUN: llc < %s -march=ppc32 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
|
2009-08-25 23:38:29 +08:00
|
|
|
; RUN: -o %t2
|
2009-11-25 06:59:02 +08:00
|
|
|
; RUN: grep {stw r31, -4(r1)} %t2
|
2007-04-16 05:17:45 +08:00
|
|
|
; RUN: grep {stwu r1, -16448(r1)} %t2
|
|
|
|
; RUN: grep {addi r1, r1, 16448} %t2
|
2009-11-25 06:59:02 +08:00
|
|
|
; RUN: grep {lwz r31, -4(r1)} %t2
|
2009-09-12 02:36:27 +08:00
|
|
|
; RUN: llc < %s -march=ppc64 -mtriple=powerpc-apple-darwin8 -o %t3
|
2009-11-25 06:59:02 +08:00
|
|
|
; RUN: not grep {std r31, -8(r1)} %t3
|
2007-04-16 05:17:45 +08:00
|
|
|
; RUN: grep {stdu r1, -16496(r1)} %t3
|
|
|
|
; RUN: grep {addi r1, r1, 16496} %t3
|
2009-11-25 06:59:02 +08:00
|
|
|
; RUN: not grep {ld r31, -8(r1)} %t3
|
2009-09-12 02:36:27 +08:00
|
|
|
; RUN: llc < %s -march=ppc64 -mtriple=powerpc-apple-darwin8 -disable-fp-elim \
|
2009-08-25 23:38:29 +08:00
|
|
|
; RUN: -o %t4
|
2009-11-25 06:59:02 +08:00
|
|
|
; RUN: grep {std r31, -8(r1)} %t4
|
|
|
|
; RUN: grep {stdu r1, -16512(r1)} %t4
|
|
|
|
; RUN: grep {addi r1, r1, 16512} %t4
|
|
|
|
; RUN: grep {ld r31, -8(r1)} %t4
|
2006-11-18 00:54:21 +08:00
|
|
|
|
2008-03-25 12:26:08 +08:00
|
|
|
define i32* @f1() {
|
|
|
|
%tmp = alloca i32, i32 4095 ; <i32*> [#uses=1]
|
|
|
|
ret i32* %tmp
|
2006-11-18 00:54:21 +08:00
|
|
|
}
|
2008-03-25 12:26:08 +08:00
|
|
|
|