aboutsummaryrefslogtreecommitdiff
path: root/lld/test/ELF/linkerscript/input-order.s
diff options
context:
space:
mode:
Diffstat (limited to 'lld/test/ELF/linkerscript/input-order.s')
-rw-r--r--lld/test/ELF/linkerscript/input-order.s4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/test/ELF/linkerscript/input-order.s b/lld/test/ELF/linkerscript/input-order.s
index cb9ea354cdbf..071d49de7b3a 100644
--- a/lld/test/ELF/linkerscript/input-order.s
+++ b/lld/test/ELF/linkerscript/input-order.s
@@ -5,7 +5,7 @@
# .foo.1 .foo.2 .bar.1 .bar.2
# RUN: echo "SECTIONS { . = 0x1000; .foo : {*(.foo.*) *(.bar.*) } }" > %t.script
# RUN: ld.lld -o %t1 --script %t.script %t
-# RUN: llvm-objdump -section=.foo -s %t1 | FileCheck --check-prefix=SCRIPT_ORDER %s
+# RUN: llvm-objdump --section=.foo -s %t1 | FileCheck --check-prefix=SCRIPT_ORDER %s
# SCRIPT_ORDER: Contents of section .foo:
# SCRIPT_ORDER-NEXT: 1000 00000000 00000000 ffffffff eeeeeeee
@@ -13,7 +13,7 @@
# .bar.1 .foo.1 .bar.2 .foo.2
# RUN: echo "SECTIONS { . = 0x1000; .foo : {*(.foo.* .bar.*)} }" > %t.script
# RUN: ld.lld -o %t1 --script %t.script %t
-# RUN: llvm-objdump -section=.foo -s %t1 | FileCheck --check-prefix=FILE_ORDER %s
+# RUN: llvm-objdump --section=.foo -s %t1 | FileCheck --check-prefix=FILE_ORDER %s
# FILE_ORDER: Contents of section .foo:
# FILE_ORDER-NEXT: 1000 ffffffff 00000000 eeeeeeee 00000000