diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-03-26 05:51:34 +0000 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-03-26 13:48:07 +0000 |
| commit | 2a245e3b78890e5d1b65492e51d9fe509ec35b3c (patch) | |
| tree | 00e839ff9a0ae4a871d282b4e86fbd9baeab701a /src/codegen/spirv.zig | |
| parent | a61def10c66abc871f92c84d9cef85b6b7752cbf (diff) | |
| download | zig-2a245e3b78890e5d1b65492e51d9fe509ec35b3c.tar.gz zig-2a245e3b78890e5d1b65492e51d9fe509ec35b3c.zip | |
compiler: eliminate TypedValue
The only logic which remained in this file was the Value printing logic.
This has been moved into a new `print_value.zig`.
Diffstat (limited to 'src/codegen/spirv.zig')
| -rw-r--r-- | src/codegen/spirv.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/spirv.zig b/src/codegen/spirv.zig index 3e560b0918..6b13f2623a 100644 --- a/src/codegen/spirv.zig +++ b/src/codegen/spirv.zig @@ -860,7 +860,7 @@ const DeclGen = struct { const val = arg_val; - log.debug("constant: ty = {}, val = {}", .{ ty.fmt(mod), val.fmtValue(ty, mod) }); + log.debug("constant: ty = {}, val = {}", .{ ty.fmt(mod), val.fmtValue(mod) }); if (val.isUndefDeep(mod)) { return self.spv.constUndef(result_ty_ref); } |
