search for: _28_foo_29_

Displaying 1 result from an estimated 1 matches for "_28_foo_29_".

2014 Feb 02
2
[LLVMdev] Changes in LLVM 3.4 llc name mangling?
...entifiers in LLVM assembler source code so that the result could be assembled with the system assembler of the target platform. E.g., if I have LLVM assembler (.ll) code like: define void @"$(foo)"() { ret void } Then the llc from LLVM 3.3 turns the identifier "$(foo)" into $_28_foo_29_ in the assembler output code (.s), which is fine. But in LLVM 3.4 this isn't the case any more, instead the "$(foo)" identifier goes through unchanged. It goes without saying that the system assembler chokes on this, so I get a bunch of error messages when trying to assemble the resu...