blob: e866b217a59ceee3f663252943b9f8f1286daf07 [file] [log] [blame]
Daniel Sanders1d3ae272014-04-14 16:00:28 +00001; RUN: llc -march=mips64el -mcpu=mips4 < %s | FileCheck %s
Akira Hatanaka79329ce2011-12-24 03:05:43 +00002; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s
3
4define void @foo3() nounwind {
5entry:
6; CHECK: daddiu ${{[0-9]+}}, $sp
7 %a = alloca i32, align 4
8 call void @foo1(i32* %a) nounwind
9 ret void
10}
11
12declare void @foo1(i32*)
13