diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-03-07 20:48:03 +0100 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:23 +0200 |
commit | 924f0a9149b6777782347be3d2c833a5f8e90058 (patch) | |
tree | 1bd15a053df1f337410b9a9c95809c4095afa459 /src/shader_recompiler/frontend/ir/ir_emitter.h | |
parent | shader: Implement LEA (diff) | |
download | yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.tar yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.tar.gz yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.tar.bz2 yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.tar.lz yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.tar.xz yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.tar.zst yuzu-924f0a9149b6777782347be3d2c833a5f8e90058.zip |
Diffstat (limited to 'src/shader_recompiler/frontend/ir/ir_emitter.h')
-rw-r--r-- | src/shader_recompiler/frontend/ir/ir_emitter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shader_recompiler/frontend/ir/ir_emitter.h b/src/shader_recompiler/frontend/ir/ir_emitter.h index 33bf2a7d0..6e29bf0e2 100644 --- a/src/shader_recompiler/frontend/ir/ir_emitter.h +++ b/src/shader_recompiler/frontend/ir/ir_emitter.h @@ -150,9 +150,9 @@ public: [[nodiscard]] U32 IMul(const U32& a, const U32& b); [[nodiscard]] U32U64 INeg(const U32U64& value); [[nodiscard]] U32 IAbs(const U32& value); - [[nodiscard]] U32 ShiftLeftLogical(const U32& base, const U32& shift); + [[nodiscard]] U32U64 ShiftLeftLogical(const U32U64& base, const U32& shift); [[nodiscard]] U32U64 ShiftRightLogical(const U32U64& base, const U32& shift); - [[nodiscard]] U32 ShiftRightArithmetic(const U32& base, const U32& shift); + [[nodiscard]] U32U64 ShiftRightArithmetic(const U32U64& base, const U32& shift); [[nodiscard]] U32 BitwiseAnd(const U32& a, const U32& b); [[nodiscard]] U32 BitwiseOr(const U32& a, const U32& b); [[nodiscard]] U32 BitwiseXor(const U32& a, const U32& b); |