From 7fdb056277fd914c724d18f4f101c477f4de8523 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Mon, 6 Mar 2023 13:01:23 +0100 Subject: [PATCH] r600/sfn: scheduled instructions are always ready Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_instr.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/r600/sfn/sfn_instr.cpp b/src/gallium/drivers/r600/sfn/sfn_instr.cpp index b539c37..e1ef9cc 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instr.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instr.cpp @@ -60,6 +60,8 @@ Instr::print(std::ostream& os) const bool Instr::ready() const { + if (is_scheduled()) + return true; for (auto& i : m_required_instr) if (!i->ready()) return false; -- 2.7.4