[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / Mips / frameindex.ll
blob3f436312e74f7ecbc471a4c900ac9301d376386f
1 ; RUN: llc -mtriple=mips-mti-linux-gnu < %s -debug 2>&1 | FileCheck %s --check-prefixes=CHECK,MIPS32
2 ; RUN: llc -mtriple=mips-mti-linux-gnu -mattr=+micromips < %s -debug 2>&1 | FileCheck %s --check-prefixes=CHECK,MM
3 ; RUN: llc -mtriple=mips64-mti-linux-gnu < %s -debug 2>&1 | FileCheck %s --check-prefixes=CHECK,MIPS64
5 ; REQUIRES: asserts
7 ; CHECK-LABEL: Instruction selection ends:
9 ; MIPS32: t{{[0-9]+}}: i{{[0-9]+}} = LEA_ADDiu TargetFrameIndex:i32<0>, TargetConstant:i32<0>
10 ; MM: t{{[0-9]+}}: i{{[0-9]+}} = LEA_ADDiu_MM TargetFrameIndex:i32<0>, TargetConstant:i32<0>
11 ; MIPS64: t{{[0-9]+}}: i{{[0-9]+}} = LEA_ADDiu64 TargetFrameIndex:i64<0>, TargetConstant:i64<0>
13 define i32 @k() {
14 entry:
15   %h = alloca i32, align 4
16   %call = call i32 @g(i32* %h)
17   ret i32 %call
20 declare i32 @g(i32*)