[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / AArch64 / GlobalISel / tail-call-no-save-fp-lr.ll
blob533e126292ae199cb0f643ce449e4df175b05e1a
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc %s -verify-machineinstrs -mtriple aarch64-apple-darwin -global-isel -global-isel-abort=1 -o - 2>&1 | FileCheck %s
4 ; Check that we get a tail call to foo without saving fp/lr.
5 define void @bar(i32 %a) #1 {
6 ; CHECK-LABEL: bar:
7 ; CHECK:       ; %bb.0: ; %entry
8 ; CHECK-NEXT:    b _zoo
9 entry:
10   tail call void @zoo(i32 undef)
11   ret void
14 define void @zoo(i32 %a) {
15 entry:
16   ret void
19 attributes #1 = { "frame-pointer"="all" }