mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
c09746dc9c
Adjust the tests to validate the number of auxiliary entries used to store the filename. Thanks to majnemer's sharp eye for catching the missing - 1 in the round up calculation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206359 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
513 B
ArmAsm
18 lines
513 B
ArmAsm
// RUN: llvm-mc -triple i686-windows -filetype obj %s -o - | llvm-objdump -t - \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-PRINT
|
|
|
|
.file "null-padded.asm"
|
|
// CHECK-PRINT: (nx 1) {{0x[0-9]+}} .file
|
|
// CHECK-PRINT-NEXT: AUX null-padded.asm{{$}}
|
|
|
|
.file "eighteen-chars.asm"
|
|
|
|
// CHECK-PRINT: (nx 1) {{0x[0-9]+}} .file
|
|
// CHECK-PRINT-NEXT: AUX eighteen-chars.asm{{$}}
|
|
|
|
.file "multiple-auxiliary-entries.asm"
|
|
|
|
// CHECK-PRINT: (nx 2) {{0x[0-9]+}} .file
|
|
// CHECK-PRINT-NEXT: AUX multiple-auxiliary-entries.asm{{$}}
|
|
|