Open
Description
Many platforms have some symbol mangling even for "unmangled" C symbols. For example adding a leading _
or trailing @argcount
. LLVM supports suppressing this by prefixing the symbol name with \x01
. cg_clif will need to implement this too to support building with -Cpanic=unwind
on Windows: https://github.com/rust-lang/rust/blob/2d8651a92761421b0437ffb44ba5670bea5ee1df/library/panic_unwind/src/seh.rs#L213