From 433136a8b66c76affe904af6345500c2af95d15a Mon Sep 17 00:00:00 2001 From: Nikola Cvetkovic Date: Thu, 27 Feb 2025 13:04:20 +0000 Subject: [PATCH] #18064: Fix the syntax --- tt_metal/jit_build/build.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tt_metal/jit_build/build.cpp b/tt_metal/jit_build/build.cpp index 31164889f39..00784bb8df8 100644 --- a/tt_metal/jit_build/build.cpp +++ b/tt_metal/jit_build/build.cpp @@ -87,7 +87,7 @@ void JitBuildEnv::init( switch (arch) { case ARCH::GRAYSKULL: common_flags = "-mcpu=tt-gs "; break; case ARCH::WORMHOLE_B0: common_flags = "-mcpu=tt-wh "; break; - case ARCH::BLACKHOLE: common_flags = "-mcpu=tt-bh " + " -fno-rvtt-sfpu-replay "; break; + case ARCH::BLACKHOLE: common_flags = "-mcpu=tt-bh -fno-rvtt-sfpu-replay "; break; default: TT_ASSERT(false, "Invalid arch"); break; } common_flags += "-std=c++17 -flto -ffast-math ";