From 8a7730672f33199b6f85cba84990dd35197f8fb6 Mon Sep 17 00:00:00 2001 From: pithlessly <79002325+pithlessly@users.noreply.github.com> Date: Sat, 19 Jun 2021 16:02:42 -0700 Subject: [PATCH] stage2 sema: change impl of @setCold to use zirSetCold (typo?) --- src/Sema.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Sema.zig b/src/Sema.zig index 68d47b7f3b..255746a763 100644 --- 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; },