[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / GlobalISel / select-intrinsic-aarch64-hint.mir
blob231785355c832307c47c55d07f6f8b6aa20f5c40
1 # RUN: llc -mtriple=aarch64-- -run-pass=instruction-select -verify-machineinstrs %s -o - | FileCheck %s
3 --- |
4   target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
6   define void @hint() { ret void }
7 ...
9 ---
10 # Check that we select a 'hint' intrinsic into a HINT instruction.
11 # CHECK-LABEL: name: hint
12 name:            hint
13 legalized:       true
14 regBankSelected: true
16 # CHECK:      registers:
17 # CHECK-NEXT:  - { id: 0, class: gpr, preferred-register: '' }
18 registers:
19   - { id: 0, class: gpr }
21 # CHECK:  body:
22 # CHECK:    HINT 1
23 body:             |
24   bb.0:
25     liveins: $w0
27     %0(s32) = G_CONSTANT i32 1
28     G_INTRINSIC_W_SIDE_EFFECTS intrinsic(@llvm.aarch64.hint), %0
29 ...