std.Target: Rename charSignedness() to cCharSignedness().

To be consistent with the other functions that answer C ABI questions.
This commit is contained in:
Alex Rønne Petersen
2025-04-06 17:02:22 +02:00
committed by Jacob Young
parent c82e1fe880
commit 0132be7bf3
5 changed files with 7 additions and 7 deletions

View File

@@ -78,7 +78,7 @@ pub fn isInteger(ctype: CType) bool {
pub fn signedness(ctype: CType, mod: *Module) std.builtin.Signedness {
return switch (ctype.index) {
.char => mod.resolved_target.result.charSignedness(),
.char => mod.resolved_target.result.cCharSignedness(),
.@"signed char",
.short,
.int,