From c83a6d5b83a0b12f7029fd17fc8037beddb79834 Mon Sep 17 00:00:00 2001 From: ArielG-NV <159081215+ArielG-NV@users.noreply.github.com> Date: Wed, 11 Jun 2025 20:38:56 -0700 Subject: fix `SLANG_ENABLE_IR_BREAK_ALLOC` (#7418) fixes: #7417 Define was called `SLANG_ENABLE_IR_BREAK_ALLOC,`. This is incorrect, supposed to be `SLANG_ENABLE_IR_BREAK_ALLOC`. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca3d4b806..b8b1645ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,7 +111,7 @@ option( option(SLANG_ENABLE_DXIL "Enable generating DXIL with DXC" ON) option(SLANG_ENABLE_FULL_IR_VALIDATION "Enable full IR validation (SLOW!)") -option(SLANG_ENABLE_IR_BREAK_ALLOC, "Enable _debugUID on IR allocation") +option(SLANG_ENABLE_IR_BREAK_ALLOC "Enable _debugUID on IR allocation") option(SLANG_ENABLE_ASAN "Enable ASAN (address sanitizer)") option(SLANG_ENABLE_PREBUILT_BINARIES "Enable using prebuilt binaries" ON) -- cgit v1.2.3