[mips][msa] Added support for matching bset, bseti, bneg, and bnegi from normal IR...
[oota-llvm.git] / test / CodeGen / Mips / mips64lea.ll
1 ; RUN: llc -march=mips64el -mcpu=mips64 < %s | FileCheck %s
2
3 define void @foo3() nounwind {
4 entry:
5 ; CHECK: daddiu ${{[0-9]+}}, $sp
6   %a = alloca i32, align 4
7   call void @foo1(i32* %a) nounwind
8   ret void
9 }
10
11 declare void @foo1(i32*)
12