blob: 3751e722952d2da7f6f41646a7a9fddecaa0cbcf [file] [log] [blame]
Joerg Sonnenbergerea83b132011-03-03 22:31:08 +00001// RUN: llvm-mc -triple x86_64-pc-linux-gnu %s -o - | FileCheck %s
2
3// Test that we handle the strings like gas
4.section bar-"foo"
5.section "foo"
6.section "foo bar"
7
8// CHECK: .section "bar-\"foo\""
Joerg Sonnenberger89e0f382011-03-04 20:03:14 +00009// CHECK: .section foo
Joerg Sonnenbergerea83b132011-03-03 22:31:08 +000010// CHECK: .section "foo bar"