summaryrefslogtreecommitdiff
path: root/lld/test/ELF/msp430.s
diff options
context:
space:
mode:
Diffstat (limited to 'lld/test/ELF/msp430.s')
-rw-r--r--lld/test/ELF/msp430.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/test/ELF/msp430.s b/lld/test/ELF/msp430.s
index 39079ed59697..732af387d261 100644
--- a/lld/test/ELF/msp430.s
+++ b/lld/test/ELF/msp430.s
@@ -1,6 +1,6 @@
; REQUIRES: msp430
; RUN: llvm-mc -filetype=obj -triple=msp430-elf -o %t1.o %s
-; RUN: echo -e '.global _start\n _start: nop' | llvm-mc -filetype=obj -triple=msp430-elf -o %t2.o -
+; RUN: printf '.global _start\n _start: nop' | llvm-mc -filetype=obj -triple=msp430-elf -o %t2.o -
; RUN: ld.lld -o %t.exe --image-base=0x1000 --Tdata=0x2000 --Ttext=0x8000 --defsym=_byte=0x21 -z separate-code %t2.o %t1.o
; RUN: llvm-objdump -s -d %t.exe | FileCheck %s