Similar to #99836 for AArch64. Non-unique names save .strtab space and match GNU assembler. Pull Request: https://github.com/llvm/llvm-project/pull/99906
16 lines
406 B
ArmAsm
16 lines
406 B
ArmAsm
# RUN: llvm-mc -filetype=obj -assemble \
|
|
# RUN: -triple=arm-arm-none-eabi -mcpu=cortex-a9 %s -o - \
|
|
# RUN: | llvm-readobj -S --symbols - | FileCheck %s
|
|
# CHECK: Name: $d
|
|
# CHECK-NEXT: Value: 0x4
|
|
# CHECK-NEXT: Size: 0
|
|
# CHECK-NEXT: Binding: Local (0x0)
|
|
# CHECK-NEXT: Type: None (0x0)
|
|
# CHECK-NEXT: Other: 0
|
|
# CHECK-NEXT: Section: .text (0x2)
|
|
# CHECK-NEXT: }
|
|
|
|
.text
|
|
nop
|
|
.zero 4
|