MIPS[64]: Skip cctests until WasmF64 support is implemented in Liftoff

Change-Id: I101cd4eea87f17a1454c3e2b39c421e304509e61
Reviewed-on: https://chromium-review.googlesource.com/919085
Commit-Queue: Ivica Bogosavljevic <ivica.bogosavljevic@mips.com>
Reviewed-by: Andreas Haas <ahaas@chromium.org>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#51355}
This commit is contained in:
Predrag Rudic 2018-02-19 09:41:04 +01:00 committed by Commit Bot
parent 4b49f84434
commit a8f68c205f
2 changed files with 6 additions and 0 deletions

View File

@ -46,6 +46,9 @@ void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value,
case kWasmF32:
TurboAssembler::Move(reg.fp(), value.to_f32_boxed().get_scalar());
break;
case kWasmF64:
BAILOUT("LoadConstant kWasmF64");
break;
default:
UNREACHABLE();
}

View File

@ -41,6 +41,9 @@ void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value,
case kWasmF32:
TurboAssembler::Move(reg.fp(), value.to_f32_boxed().get_scalar());
break;
case kWasmF64:
BAILOUT("LoadConstant kWasmF64");
break;
default:
UNREACHABLE();
}