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 21:58:52 +00: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