summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp
diff options
context:
space:
mode:
authorFernandoS27 <fsahmkow27@gmail.com>2021-04-10 00:29:12 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:27 +0200
commit1be6705408d1a3454146c705fae3dc55031e966e (patch)
tree325133fcabd67f3e21fdb4096b5cc8c59875b7ad /src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp
parentshader: Remove outdated comment in F2I (diff)
downloadyuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.gz
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.bz2
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.lz
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.xz
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.tar.zst
yuzu-1be6705408d1a3454146c705fae3dc55031e966e.zip
Diffstat (limited to 'src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp')
-rw-r--r--src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp
index 5a0fc36a0..3c233597f 100644
--- a/src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp
+++ b/src/shader_recompiler/frontend/maxwell/translate/impl/integer_floating_point_conversion.cpp
@@ -62,7 +62,7 @@ IR::U32 SmallAbs(TranslatorVisitor& v, const IR::U32& value, int bitsize) {
void I2F(TranslatorVisitor& v, u64 insn, IR::U32U64 src) {
const Encoding i2f{insn};
if (i2f.cc != 0) {
- throw NotImplementedException("CC");
+ throw NotImplementedException("I2F CC");
}
const bool is_signed{i2f.is_signed != 0};
int src_bitsize{};