aboutsummaryrefslogtreecommitdiff
path: root/src/codegen/llvm/BitcodeReader.zig
AgeCommit message (Collapse)Author
2024-08-29compiler: avoid field/decl name conflictsmlugg
Most of the required renames here are net wins for readaibility, I'd say. The ones in `arch` are a little more verbose, but I think better. I didn't bother renaming the non-conflicting functions in `arch/arm/bits.zig` and `arch/aarch64/bits.zig`, since these backends are pretty bit-rotted anyway AIUI.
2024-08-28std: update `std.builtin.Type` fields to follow naming conventionsmlugg
The compiler actually doesn't need any functional changes for this: Sema does reification based on the tag indices of `std.builtin.Type` already! So, no zig1.wasm update is necessary. This change is necessary to disallow name clashes between fields and decls on a type, which is a prerequisite of #9938.
2023-11-19compiler: correct unnecessary uses of 'var'mlugg
2023-11-10BitcodeReader: followup cleanupJacob Young
2023-11-09Compilation: forward clang diagnostics to error bundlesJacob Young