[RISCV] Reduce redundancy in vnsrl tests
[llvm-project.git] / llvm / test / CodeGen / MSP430 / calls.ll
blob4d3b7e328a84e3c579eb5bd759519733c1e7fe96
1 ; RUN: llc < %s | FileCheck %s
3 target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16-a0:16:16"
4 target triple = "msp430---elf"
6 declare i32 @direct(i32 %a)
8 define i32 @test_direct(i32 %a) nounwind {
9 ; CHECK-LABEL: test_direct:
10 ; CHECK: call #direct
11   %1 = call i32 @direct(i32 %a)
12   ret i32 %1
15 define i16 @test_indirect(ptr %a, i16 %b) nounwind {
16 ; CHECK-LABEL: test_indirect:
17 ; CHECK: mov    r12, r14
18 ; CHECK: mov    r13, r12
19 ; CHECK: call   r14
20   %1 = call i16 %a(i16 %b)
21   ret i16 %1