[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-reduce / mir / infer-triple.mir
blob3f68c74f7cb0d00470f7e8e6c064d4af65e014d1
1 # REQUIRES: amdgpu-registered-target
2 # RUN: llvm-reduce -simplify-mir --test FileCheck --test-arg --check-prefix=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t 2> %t.log
3 # RUN: FileCheck --check-prefix=RESULT %s < %t
5 # Test that the MIR parser successfully infers the target triple from
6 # the module and avoids needing the -mtriple flag.
8 # CHECK-INTERESTINGNESS: S_ENDPGM
10 # RESULT: name: func
12 --- |
13   target triple = "amdgcn-amd-amdhsa"
15   define void @func() {
16     ret void
17   }
19 ...
20 ---
21 name: func
22 tracksRegLiveness: true
23 body:             |
24   bb.0:
25     S_NOP 0
26     S_ENDPGM 0
27 ...