Check for MaxAlign.

llvm-svn: 31826
This commit is contained in:
Jim Laskey 2006-11-17 17:19:49 +00:00
parent 6684f2f0a7
commit 63228b3450
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
; RUN: llvm-as < %s | llc -march=ppc32 | grep 'rlwinm r0, r1, 0, 22, 31' &&
; RUN: llvm-as < %s | llc -march=ppc32 | grep 'subfic r0, r0, -17408' &&
; RUN: llvm-as < %s | llc -march=ppc64 | grep 'rldicl r0, r1, 0, 54'
implementation
int* %f1() {
%tmp = alloca int, uint 4095, align 1024
ret int* %tmp
}