You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
246 B
13 lines
246 B
7 months ago
|
// 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
|