Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64-stackmap-nops.ll
blob2647ac44296908abbfb990ab35af97f4fb3f95c8
1 ; RUN: llc < %s -mtriple=arm64-apple-darwin | FileCheck %s
3 define void @test_shadow_optimization() {
4 entry:
5 ; Expect 8 bytes worth of nops here rather than 16: With the shadow optimization
6 ; in place, 8 bytes will be consumed by the frame teardown and return instr.
7 ; CHECK-LABEL: test_shadow_optimization:
8 ; CHECK:      nop
9 ; CHECK-NEXT: nop
10 ; CHECK-NOT:  nop
11   tail call void (i64, i32, ...) @llvm.experimental.stackmap(i64  0, i32  16)
12   ret void
15 declare void @llvm.experimental.stackmap(i64, i32, ...)