Joerg Sonnenberger | 852ab89 | 2011-03-03 22:31:08 +0000 | [diff] [blame] | 1 | // 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 Sonnenberger | 62f7597 | 2011-03-04 20:03:14 +0000 | [diff] [blame] | 9 | // CHECK: .section foo |
Joerg Sonnenberger | 852ab89 | 2011-03-03 22:31:08 +0000 | [diff] [blame] | 10 | // CHECK: .section "foo bar" |