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