mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
Merge pull request #15775 from r00ster91/newlines
remove some newlines and other minor cleanups
This commit is contained in:
commit
660955c0d6
@ -56,7 +56,6 @@ pub const StackTrace = struct {
|
|||||||
std.debug.writeStackTrace(self, writer, arena.allocator(), debug_info, tty_config) catch |err| {
|
std.debug.writeStackTrace(self, writer, arena.allocator(), debug_info, tty_config) catch |err| {
|
||||||
try writer.print("Unable to print stack trace: {s}\n", .{@errorName(err)});
|
try writer.print("Unable to print stack trace: {s}\n", .{@errorName(err)});
|
||||||
};
|
};
|
||||||
try writer.writeAll("\n");
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -191,10 +190,12 @@ pub const CallingConvention = enum(u8) {
|
|||||||
/// This data structure is used by the Zig language code generation and
|
/// This data structure is used by the Zig language code generation and
|
||||||
/// therefore must be kept in sync with the compiler implementation.
|
/// therefore must be kept in sync with the compiler implementation.
|
||||||
pub const AddressSpace = enum(u5) {
|
pub const AddressSpace = enum(u5) {
|
||||||
|
// CPU address spaces.
|
||||||
generic,
|
generic,
|
||||||
gs,
|
gs,
|
||||||
fs,
|
fs,
|
||||||
ss,
|
ss,
|
||||||
|
|
||||||
// GPU address spaces.
|
// GPU address spaces.
|
||||||
global,
|
global,
|
||||||
constant,
|
constant,
|
||||||
|
|||||||
28
src/Sema.zig
28
src/Sema.zig
@ -1088,25 +1088,25 @@ fn analyzeBodyInner(
|
|||||||
.error_set_decl_anon => try sema.zirErrorSetDecl(block, inst, .anon),
|
.error_set_decl_anon => try sema.zirErrorSetDecl(block, inst, .anon),
|
||||||
.error_set_decl_func => try sema.zirErrorSetDecl(block, inst, .func),
|
.error_set_decl_func => try sema.zirErrorSetDecl(block, inst, .func),
|
||||||
|
|
||||||
.add => try sema.zirArithmetic(block, inst, .add, true),
|
.add => try sema.zirArithmetic(block, inst, .add, true),
|
||||||
.addwrap => try sema.zirArithmetic(block, inst, .addwrap, true),
|
.addwrap => try sema.zirArithmetic(block, inst, .addwrap, true),
|
||||||
.add_sat => try sema.zirArithmetic(block, inst, .add_sat, true),
|
.add_sat => try sema.zirArithmetic(block, inst, .add_sat, true),
|
||||||
.add_unsafe=> try sema.zirArithmetic(block, inst, .add_unsafe, false),
|
.add_unsafe => try sema.zirArithmetic(block, inst, .add_unsafe, false),
|
||||||
.mul => try sema.zirArithmetic(block, inst, .mul, true),
|
.mul => try sema.zirArithmetic(block, inst, .mul, true),
|
||||||
.mulwrap => try sema.zirArithmetic(block, inst, .mulwrap, true),
|
.mulwrap => try sema.zirArithmetic(block, inst, .mulwrap, true),
|
||||||
.mul_sat => try sema.zirArithmetic(block, inst, .mul_sat, true),
|
.mul_sat => try sema.zirArithmetic(block, inst, .mul_sat, true),
|
||||||
.sub => try sema.zirArithmetic(block, inst, .sub, true),
|
.sub => try sema.zirArithmetic(block, inst, .sub, true),
|
||||||
.subwrap => try sema.zirArithmetic(block, inst, .subwrap, true),
|
.subwrap => try sema.zirArithmetic(block, inst, .subwrap, true),
|
||||||
.sub_sat => try sema.zirArithmetic(block, inst, .sub_sat, true),
|
.sub_sat => try sema.zirArithmetic(block, inst, .sub_sat, true),
|
||||||
|
|
||||||
.div => try sema.zirDiv(block, inst),
|
.div => try sema.zirDiv(block, inst),
|
||||||
.div_exact => try sema.zirDivExact(block, inst),
|
.div_exact => try sema.zirDivExact(block, inst),
|
||||||
.div_floor => try sema.zirDivFloor(block, inst),
|
.div_floor => try sema.zirDivFloor(block, inst),
|
||||||
.div_trunc => try sema.zirDivTrunc(block, inst),
|
.div_trunc => try sema.zirDivTrunc(block, inst),
|
||||||
|
|
||||||
.mod_rem => try sema.zirModRem(block, inst),
|
.mod_rem => try sema.zirModRem(block, inst),
|
||||||
.mod => try sema.zirMod(block, inst),
|
.mod => try sema.zirMod(block, inst),
|
||||||
.rem => try sema.zirRem(block, inst),
|
.rem => try sema.zirRem(block, inst),
|
||||||
|
|
||||||
.max => try sema.zirMinMax(block, inst, .max),
|
.max => try sema.zirMinMax(block, inst, .max),
|
||||||
.min => try sema.zirMinMax(block, inst, .min),
|
.min => try sema.zirMinMax(block, inst, .min),
|
||||||
@ -35670,7 +35670,7 @@ pub fn analyzeAddressSpace(
|
|||||||
ctx: AddressSpaceContext,
|
ctx: AddressSpaceContext,
|
||||||
) !std.builtin.AddressSpace {
|
) !std.builtin.AddressSpace {
|
||||||
const mod = sema.mod;
|
const mod = sema.mod;
|
||||||
const addrspace_tv = try sema.resolveInstConst(block, src, zir_ref, "addresspace must be comptime-known");
|
const addrspace_tv = try sema.resolveInstConst(block, src, zir_ref, "address space must be comptime-known");
|
||||||
const address_space = mod.toEnum(std.builtin.AddressSpace, addrspace_tv.val);
|
const address_space = mod.toEnum(std.builtin.AddressSpace, addrspace_tv.val);
|
||||||
const target = sema.mod.getTarget();
|
const target = sema.mod.getTarget();
|
||||||
const arch = target.cpu.arch;
|
const arch = target.cpu.arch;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user