diff options
Diffstat (limited to 'test/ELF/linkerscript/sections-sort.s')
-rw-r--r-- | test/ELF/linkerscript/sections-sort.s | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/ELF/linkerscript/sections-sort.s b/test/ELF/linkerscript/sections-sort.s index cf1fd3e57827..0e99851910f4 100644 --- a/test/ELF/linkerscript/sections-sort.s +++ b/test/ELF/linkerscript/sections-sort.s @@ -1,10 +1,7 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o -# RUN: echo "SECTIONS { \ -# RUN: .text : { *(.text) } \ -# RUN: foo : { *(foo) } \ -# RUN: } " > %t.script +# RUN: echo "SECTIONS { .text : {*(.text)} foo : {*(foo)}}" > %t.script # RUN: ld.lld -o %t --script %t.script %t.o -shared # RUN: llvm-objdump --section-headers %t | FileCheck %s |