Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / LoongArch / expand-call.ll
blob8c21adbcbb55c8e9905356fdb6898ab8bb854514
1 ; RUN: llc --mtriple=loongarch64 -mattr=+d --stop-before loongarch-prera-expand-pseudo \
2 ; RUN:     --verify-machineinstrs < %s | FileCheck %s --check-prefix=NOEXPAND
3 ; RUN: llc --mtriple=loongarch64 -mattr=+d --stop-before machine-opt-remark-emitter \
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