Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / MIR / AMDGPU / llc-target-cpu-attr-from-cmdline-ir.mir
blob4272ead86f2d09f07b479a58a4f09f57bbdd9f12
1 # RUN: llc -march=amdgcn -mcpu=hawaii -run-pass=none -o - %s | FileCheck -check-prefix=MCPU %s
2 # RUN: llc -march=amdgcn -mattr=+unaligned-access-mode -run-pass=none -o - %s | FileCheck -check-prefix=MATTR %s
4 # FIXME: This overrides attributes that already are present. It should probably
5 # only touch functions without an existing attribute.
7 # MCPU:  @with_cpu_attr() #0 {
8 # MCPU: @no_cpu_attr() #1 {
10 # MCPU: attributes #0 = { "target-cpu"="fiji" }
11 # MCPU: attributes #1 = { "target-cpu"="hawaii" }
13 # MATTR:  attributes #0 = { "target-cpu"="fiji" "target-features"="+unaligned-access-mode" }
14 # MATTR: attributes #1 = { "target-features"="+unaligned-access-mode" }
16 --- |
17   define amdgpu_kernel void @with_cpu_attr() #0 {
18     ret void
19   }
21   define amdgpu_kernel void @no_cpu_attr() {
22     ret void
23   }
25   attributes #0 = { "target-cpu"="fiji" }
26 ...
28 ---
29 name: with_cpu_attr
30 legalized: true
31 regBankSelected: true
32 tracksRegLiveness: true
34 body: |
35   bb.0:
36     liveins: $sgpr0, $sgpr1
38     %0:sgpr(s32) = COPY $sgpr0
39     %1:sgpr(s32) = COPY $sgpr1
40     %2:vgpr(s32) = G_OR %0, %1
41     S_ENDPGM 0, implicit %2
42 ...
44 ---
45 name: no_cpu_attr
46 legalized: true
47 regBankSelected: true
48 tracksRegLiveness: true
50 body: |
51   bb.0:
52     liveins: $sgpr0, $sgpr1
54     %0:sgpr(s32) = COPY $sgpr0
55     %1:sgpr(s32) = COPY $sgpr1
56     %2:vgpr(s32) = G_OR %0, %1
57     S_ENDPGM 0, implicit %2
58 ...