Wrap a test to 80 columns

git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@363421 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/ELF/comdat-discarded-error.s b/test/ELF/comdat-discarded-error.s
index 0f6b417..d5aa4aa 100644
--- a/test/ELF/comdat-discarded-error.s
+++ b/test/ELF/comdat-discarded-error.s
@@ -1,8 +1,8 @@
 # REQUIRES: x86
 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t1.o
-# RUN: echo '.section .text.foo,"axG",@progbits,foo,comdat; .globl foo; foo:' | \
+# RUN: echo '.section .text.foo,"axG",@progbits,foo,comdat; .globl foo; foo:' |\
 # RUN:   llvm-mc -filetype=obj -triple=x86_64 - -o %t2.o
-# RUN: echo '.section .text.foo,"axG",@progbits,foo,comdat; .globl bar; bar:' | \
+# RUN: echo '.section .text.foo,"axG",@progbits,foo,comdat; .globl bar; bar:' |\
 # RUN:   llvm-mc -filetype=obj -triple=x86_64 - -o %t3.o
 
 # RUN: not ld.lld %t2.o %t3.o %t1.o -o /dev/null 2>&1 | FileCheck %s