diff options
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/MC/AsmParser/gas-compl-sun-elf.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/llvm/test/MC/AsmParser/gas-compl-sun-elf.s b/llvm/test/MC/AsmParser/gas-compl-sun-elf.s new file mode 100644 index 00000000000..7934109d343 --- /dev/null +++ b/llvm/test/MC/AsmParser/gas-compl-sun-elf.s @@ -0,0 +1,13 @@ +@ RUN: llvm-mc -filetype=obj -triple arm-linux-gnu %s -o - | llvm-readelf --sections | FileCheck %s + +@ CHECK: .f1 PROGBITS 00000000 000034 000000 00 A 0 0 1 +.section ".f1", #alloc + +@ CHECK: .f2 PROGBITS 00000000 000034 000000 00 W 0 0 1 +.section ".f2", #write + +@ CHECK: .f3 PROGBITS 00000000 000034 000000 00 A 0 0 1 +.section ".f3", "a" + +@ CHECK: .f4 PROGBITS 00000000 000034 000000 00 W 0 0 1 +.section ".f4", "w" |