symbol-names.s 255 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // RUN: llvm-mc -triple i686-pc-linux -filetype=obj %s -o - | llvm-readobj --symbols - | 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