commit 8a7730672f33199b6f85cba84990dd35197f8fb6 (tree) parent 37a1028b6e894881b85feb3d8555cacfabbc45a2 Author: pithlessly <79002325+pithlessly@users.noreply.github.com> Date: Sat, 19 Jun 2021 16:02:42 -0700 stage2 sema: change impl of @setCold to use zirSetCold (typo?) Diffstat:
| M | src/Sema.zig | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Sema.zig b/src/Sema.zig @@ -473,7 +473,7 @@ pub fn analyzeBody( continue; }, .set_cold => { - try sema.zirSetAlignStack(block, inst); + try sema.zirSetCold(block, inst); i += 1; continue; },