1# REQUIRES: x86 2 3## Handling of quotes is tricky sometimes. Check we do that right and include 4## "foo bar" section into .data as expected. 5 6# RUN: echo '.section "foo bar", "aw"; nop' | llvm-mc -filetype=obj -triple=x86_64-pc-linux - -o %t 7# RUN: ld.lld %t --script %s -o %t2 --print-map | FileCheck %s 8# CHECK: .data 9# CHECK-NEXT: {{.*}}(foo bar) 10 11SECTIONS { 12 .data : { *("foo bar") } 13} 14