diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-04-16 22:43:33 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-04-16 23:43:34 -0400 |
| commit | e2d8be1ca2cee27eb17964dd99c71dfd12431506 (patch) | |
| tree | a1b92b6e3979373c1fb034e012fb1e9051ecf3db /src/video_core/shader | |
| parent | fc5df84581c826525c158c234cefa6c2cf1d84e8 (diff) | |
General: Resolve warnings related to missing declarations
Diffstat (limited to 'src/video_core/shader')
| -rw-r--r-- | src/video_core/shader/control_flow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/control_flow.cpp b/src/video_core/shader/control_flow.cpp index 6d313963a..e00a3fb70 100644 --- a/src/video_core/shader/control_flow.cpp +++ b/src/video_core/shader/control_flow.cpp @@ -587,8 +587,6 @@ bool TryQuery(CFGRebuildState& state) { return true; } -} // Anonymous namespace - void InsertBranch(ASTManager& mm, const BlockBranchInfo& branch_info) { const auto get_expr = ([&](const Condition& cond) -> Expr { Expr result{}; @@ -655,6 +653,8 @@ void DecompileShader(CFGRebuildState& state) { state.manager->Decompile(); } +} // Anonymous namespace + std::unique_ptr<ShaderCharacteristics> ScanFlow(const ProgramCode& program_code, u32 start_address, const CompilerSettings& settings, Registry& registry) { |
