3 ## Handling of quotes is tricky sometimes. Check we do that right and include
4 ## "foo bar" section into ".data foo" as expected.
6 # RUN: echo '.section "foo bar", "aw"; nop' | llvm-mc -filetype=obj -triple=x86_64 - -o %t.o
7 # RUN: ld.lld %t.o --script %s -o %t --print-map | FileCheck %s
8 # RUN: llvm-readelf -S %t | FileCheck %s --check-prefix=SEC
10 # CHECK-NEXT: {{.*}}(foo bar)
12 # SEC: ]{{ }}.data foo
13 # SEC: ]{{ }}.data bar
16 " .data foo" : { *("foo bar") }
20 " .data bar" : { bar = .; }