mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-19 04:58:27 +00:00
14 lines
330 B
C
14 lines
330 B
C
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "shader_recompiler/ir/abstract_syntax_list.h"
|
||
|
#include "shader_recompiler/ir/basic_block.h"
|
||
|
|
||
|
namespace Shader::IR {
|
||
|
|
||
|
BlockList PostOrder(const AbstractSyntaxNode& root);
|
||
|
|
||
|
} // namespace Shader::IR
|