2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00
yuzu/src/shader_recompiler/frontend/ir/post_order.h

14 lines
348 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2021-02-14 23:15:42 +00:00
#pragma once
#include "shader_recompiler/frontend/ir/abstract_syntax_list.h"
2021-05-25 22:58:52 +01:00
#include "shader_recompiler/frontend/ir/basic_block.h"
2021-02-14 23:15:42 +00:00
namespace Shader::IR {
BlockList PostOrder(const AbstractSyntaxNode& root);
2021-02-14 23:15:42 +00:00
} // namespace Shader::IR