Noting and enforcing that GC intrinsics are valid only within a
[oota-llvm.git] / test / CodeGen / PowerPC / 2006-10-17-ppc64-alloca.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=ppc64
2
3 int * %foo(uint %n) {
4         %A = alloca int, uint %n
5         ret int* %A
6 }