summaryrefslogtreecommitdiff
path: root/test/MC/ELF/symbol-names.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/MC/ELF/symbol-names.s')
-rw-r--r--test/MC/ELF/symbol-names.s12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/MC/ELF/symbol-names.s b/test/MC/ELF/symbol-names.s
new file mode 100644
index 0000000000..6459ac93cc
--- /dev/null
+++ b/test/MC/ELF/symbol-names.s
@@ -0,0 +1,12 @@
+// RUN: llvm-mc -triple i686-pc-linux -filetype=obj %s -o - | llvm-readobj -t | FileCheck %s
+
+// MC allows ?'s in symbol names as an extension.
+
+.text
+.globl foo?bar
+.type foo?bar, @function
+foo?bar:
+ret
+
+// CHECK: Symbol
+// CHECK: Name: foo?bar