mirror of
https://github.com/yuzu-mirror/dynarmic.git
synced 2026-02-06 15:24:16 +01:00
Provide justification for always-true condition (#412)
This commit is contained in:
parent
3359572e5d
commit
bbd8abaa25
|
|
@ -87,6 +87,7 @@ bool TranslatorVisitor::FMOV_float_gen(bool sf, Imm<2> type, Imm<1> rmode_0, Imm
|
|||
size_t part;
|
||||
switch (rmode_0.ZeroExtend()) {
|
||||
case 0b0:
|
||||
// fltsize != 16 is always true for now (late 2018), until half-float support is implemented.
|
||||
if (fltsize != 16 && fltsize != intsize) {
|
||||
return UnallocatedEncoding();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue