diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-10-31 17:46:46 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2021-10-31 19:34:15 +0100 |
commit | c50ad56bf59169bd0fc808ebecfb4a69376f10df (patch) | |
tree | 56b4c044f6116a092370438c89b96e1400ad363a /src/shader_recompiler/frontend/ir/value.h | |
parent | Merge pull request #6702 from lat9nq/disable-screensaver (diff) | |
download | yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.gz yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.bz2 yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.lz yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.xz yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.tar.zst yuzu-c50ad56bf59169bd0fc808ebecfb4a69376f10df.zip |
Diffstat (limited to '')
-rw-r--r-- | src/shader_recompiler/frontend/ir/value.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shader_recompiler/frontend/ir/value.h b/src/shader_recompiler/frontend/ir/value.h index 334bb47aa..6c9ef6bdd 100644 --- a/src/shader_recompiler/frontend/ir/value.h +++ b/src/shader_recompiler/frontend/ir/value.h @@ -182,6 +182,9 @@ public: /// Add phi operand to a phi instruction. void AddPhiOperand(Block* predecessor, const Value& value); + /// Orders the Phi arguments from farthest away to nearest. + void OrderPhiArgs(); + void Invalidate(); void ClearArgs(); |