backend\A64\reg_alloc.cpp: Fix assert

This commit is contained in:
SachinVin 2020-05-16 18:18:29 +05:30 committed by xperia64
parent 38556d1bf2
commit 5613c1a042

View File

@ -585,7 +585,7 @@ void RegAlloc::EmitMove(size_t bit_width, HostLoc to, HostLoc from) {
// bit_width == 128
//mov(HostLocToFpr(to), HostLocToFpr(from));
UNIMPLEMENTED();
ASSERT_FALSE("Unimplemented");
} else if (HostLocIsGPR(to) && HostLocIsGPR(from)) {
ASSERT(bit_width != 128);
if (bit_width == 64) {