summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp
diff options
context:
space:
mode:
authorGravatar lat9nq2021-06-28 23:44:03 -0400
committerGravatar ameerj2021-07-22 21:51:40 -0400
commit2e5af95541adf581364ee3864be57f9b2b9a230f (patch)
tree939e3d203ecc1ea98fae168745004c28cdb9b007 /src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp
parentshader: Account for 33-bit IADD3 scenario (diff)
downloadyuzu-2e5af95541adf581364ee3864be57f9b2b9a230f.tar.gz
yuzu-2e5af95541adf581364ee3864be57f9b2b9a230f.tar.xz
yuzu-2e5af95541adf581364ee3864be57f9b2b9a230f.zip
shader: GCC fmt 8.0.0 fixes
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp')
-rw-r--r--src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp b/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp
index 10d05dc4c..06fde0017 100644
--- a/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp
+++ b/src/shader_recompiler/frontend/maxwell/structured_control_flow.cpp
@@ -174,7 +174,7 @@ std::string DumpTree(const Tree& tree, u32 indentation = 0) {
174 switch (stmt->type) { 174 switch (stmt->type) {
175 case StatementType::Code: 175 case StatementType::Code:
176 ret += fmt::format("{} Block {:04x} -> {:04x} (0x{:016x});\n", indent, 176 ret += fmt::format("{} Block {:04x} -> {:04x} (0x{:016x});\n", indent,
177 stmt->block->begin, stmt->block->end, 177 stmt->block->begin.Offset(), stmt->block->end.Offset(),
178 reinterpret_cast<uintptr_t>(stmt->block)); 178 reinterpret_cast<uintptr_t>(stmt->block));
179 break; 179 break;
180 case StatementType::Goto: 180 case StatementType::Goto: