[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / LoongArch / expand-call.ll
blob86bf4292665b72c88b4ba5ab3cf056b9c327edda
1 ; RUN: llc --mtriple=loongarch64 --stop-before loongarch-prera-expand-pseudo \
2 ; RUN:     --verify-machineinstrs < %s | FileCheck %s --check-prefix=NOEXPAND
3 ; RUN: llc --mtriple=loongarch64 --stop-after loongarch-prera-expand-pseudo \
4 ; RUN:     --verify-machineinstrs < %s | FileCheck %s --check-prefix=EXPAND
6 declare void @callee()
8 define void @caller() nounwind {
9 ; NOEXPAND-LABEL: name: caller
10 ; NOEXPAND: PseudoCALL target-flags{{.*}}callee
12 ; EXPAND-LABEL: name: caller
13 ; EXPAND: BL target-flags{{.*}}callee
14   call void @callee()
15   ret void