1// REQUIRES: x86
2// Ensure that a mergeable string with size 0 does not cause any issue.
3
4// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
5// RUN: ld.lld %t.o -o /dev/null
6
7.globl _start, s
8.section .rodata.str1.1,"aMS",@progbits,1
9s:
10.text
11_start:
12	.quad s
13