Rust now has a dedicated language identifier in the PDB format, instead of emitting as Masm.
https://reviews.llvm.org/D115300
This broke CodeLLDB's ability to debug binaries produced by the latest Rust compiler on Windows:
rust-lang/rust#93624
I see that CodeLLDB is using a patched LLVM that detects Masm as potentially Rust code via this vadimcn/llvm-project@4aba5a4 commit. Can we update the patch to also detect Rust (0x15) as Rust code ?
Let me know if I can help.