[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / MC / AMDGPU / alignto_mcexpr.s
blobe864f3736828c4b3de442895441dacdcbd8857a1
1 // RUN: llvm-mc -triple amdgcn-amd-amdhsa < %s | FileCheck --check-prefix=ASM %s
3 // ASM: .set alignto_zero_eight, 0
4 // ASM: .set alignto_one_eight, 8
5 // ASM: .set alignto_five_eight, 8
6 // ASM: .set alignto_seven_eight, 8
7 // ASM: .set alignto_eight_eight, 8
8 // ASM: .set alignto_ten_eight, 16
10 .set alignto_zero_eight, alignto(0, 8)
11 .set alignto_one_eight, alignto(1, 8)
12 .set alignto_five_eight, alignto(5, 8)
13 .set alignto_seven_eight, alignto(7, 8)
14 .set alignto_eight_eight, alignto(8, 8)
15 .set alignto_ten_eight, alignto(10, 8)