From 742f718debc3c3178dc18c71366fdd02ba943ecd Mon Sep 17 00:00:00 2001 From: David Ma Date: Mon, 2 Dec 2024 20:48:49 +0000 Subject: [PATCH] #0: Fix DPRINT_DATA macro bug --- tt_metal/hw/inc/debug/dprint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tt_metal/hw/inc/debug/dprint.h b/tt_metal/hw/inc/debug/dprint.h index 6e88bff9ee3..4b556dc3f4f 100644 --- a/tt_metal/hw/inc/debug/dprint.h +++ b/tt_metal/hw/inc/debug/dprint.h @@ -64,11 +64,11 @@ #if defined(COMPILE_FOR_BRISC) || defined(COMPILE_FOR_NCRISC) #define DPRINT_DATA0(x) \ if (noc_index == 0) { \ - x \ + x; \ } #define DPRINT_DATA1(x) \ if (noc_index == 1) { \ - x \ + x; \ } #else #define DPRINT_DATA0(x)