On 9 Nov 2022, at 18:30, astrus via digitalmars-d-ldc wrote: > Does LDC compile source code directly to LLVM IR to machine code Yes, from the DMD AST directly to LLVM IR, and then further to whatever desired output format (LLVM IR, assembly, object files, …) in-process using the standard LLVM tools. — David