64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
13 lines
246 B
ArmAsm
13 lines
246 B
ArmAsm
// 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
|