use an x86 t-t for an x86 test. Thanks to Dan for noticing this!
[oota-llvm.git] / test / CodeGen / PowerPC / Frames-align.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | \
2 ; RUN:   llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \
3 ; RUN:   grep {rlwinm r0, r1, 0, 22, 31}
4 ; RUN: llvm-upgrade < %s | llvm-as | \
5 ; RUN:   llc -march=ppc32 -mtriple=powerpc-apple-darwin8 | \
6 ; RUN:   grep {subfic r0, r0, -16448}
7 ; RUN: llvm-upgrade < %s | llvm-as | \
8 ; RUN:   llc -march=ppc64 -mtriple=powerpc-apple-darwin8 | \
9 ; RUN:   grep {rldicl r0, r1, 0, 54}
10
11 implementation
12
13 int* %f1() {
14         %tmp = alloca int, uint 4095, align 1024
15         ret int* %tmp
16 }