mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
fa964e153e
llvm-svn: 114091
12 lines
367 B
ArmAsm
12 lines
367 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump | FileCheck %s
|
|
|
|
// Test that these names are accepted.
|
|
|
|
.section .note.GNU-stack,"",@progbits
|
|
.section .note.GNU-,"",@progbits
|
|
.section -.note.GNU,"",@progbits
|
|
|
|
// CHECK: ('sh_name', 18) # '.note.GNU-stack'
|
|
// CHECK: ('sh_name', 34) # '.note.GNU-'
|
|
// CHECK: ('sh_name', 45) # '-.note.GNU'
|