1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Test case for r147232.

llvm-svn: 147233
This commit is contained in:
Akira Hatanaka 2011-12-24 03:05:43 +00:00
parent f88c8c8d68
commit 72c5800ed2

View File

@ -0,0 +1,12 @@
; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s
define void @foo3() nounwind {
entry:
; CHECK: daddiu ${{[0-9]+}}, $sp
%a = alloca i32, align 4
call void @foo1(i32* %a) nounwind
ret void
}
declare void @foo1(i32*)