From 8c4d824e39420001517ad71cfe052b99316e9aaa Mon Sep 17 00:00:00 2001 From: Michael Tretter Date: Mon, 22 Dec 2025 15:12:55 +0100 Subject: [PATCH] r600: fix documentation of preoptir The preoptir still prints the intermediate representation before optimization, but now this isn't LLVM IR but NIR. Signed-off-by: Michael Tretter Part-of: --- src/gallium/drivers/r600/r600_pipe_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/r600_pipe_common.c b/src/gallium/drivers/r600/r600_pipe_common.c index ee4e49d132e..6bba75f79f1 100644 --- a/src/gallium/drivers/r600/r600_pipe_common.c +++ b/src/gallium/drivers/r600/r600_pipe_common.c @@ -682,7 +682,7 @@ static const struct debug_named_value common_debug_options[] = { { "cs", DBG_CS, "Print compute shaders" }, { "tcs", DBG_TCS, "Print tessellation control shaders" }, { "tes", DBG_TES, "Print tessellation evaluation shaders" }, - { "preoptir", DBG_PREOPT_IR, "Print the LLVM IR before initial optimizations" }, + { "preoptir", DBG_PREOPT_IR, "Print the NIR before initial optimizations" }, { "checkir", DBG_CHECK_IR, "Enable additional sanity checks on shader IR" }, { "testdma", DBG_TEST_DMA, "Invoke SDMA tests and exit." },