xref: /llvm-project/llvm/test/CodeGen/PowerPC/2006-10-17-ppc64-alloca.ll (revision 427fb35192f1f7bb694a5910b05abc5925a798b2)
1; RUN: llc < %s -mtriple=ppc64--
2
3define ptr @foo(i32 %n) {
4        %A = alloca i32, i32 %n         ; <ptr> [#uses=1]
5        ret ptr %A
6}
7
8