1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

new testcase

llvm-svn: 31029
This commit is contained in:
Chris Lattner 2006-10-18 01:21:35 +00:00
parent 0f686ec438
commit a4e5ea95d4

View File

@ -0,0 +1,6 @@
; RUN: llvm-as < %s | llc -march=ppc64
int * %foo(uint %n) {
%A = alloca int, uint %n
ret int* %A
}