File: alignto_mcexpr.s

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.7-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,998,520 kB
  • sloc: cpp: 6,951,680; ansic: 1,486,157; asm: 913,598; python: 232,024; f90: 80,126; objc: 75,281; lisp: 37,276; pascal: 16,990; sh: 10,009; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,167; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (15 lines) | stat: -rw-r--r-- 529 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: llvm-mc -triple amdgcn-amd-amdhsa < %s | FileCheck --check-prefix=ASM %s

// ASM: .set alignto_zero_eight, 0
// ASM: .set alignto_one_eight, 8
// ASM: .set alignto_five_eight, 8
// ASM: .set alignto_seven_eight, 8
// ASM: .set alignto_eight_eight, 8
// ASM: .set alignto_ten_eight, 16

.set alignto_zero_eight, alignto(0, 8)
.set alignto_one_eight, alignto(1, 8)
.set alignto_five_eight, alignto(5, 8)
.set alignto_seven_eight, alignto(7, 8)
.set alignto_eight_eight, alignto(8, 8)
.set alignto_ten_eight, alignto(10, 8)