1# REQUIRES: x86 2# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o 3# RUN: not ld.lld %t.o -o /dev/null 2>&1 | FileCheck %s 4# RUN: ld.lld %t.o -o /dev/null --noinhibit-exec 5 6# CHECK: error: {{.*}}.o:(.mergeable): string is not null terminated 7 8.section .mergeable,"MS",@progbits,2 9 .short 0x1122 10