Commit a8f68c20 authored by Predrag Rudic's avatar Predrag Rudic Committed by Commit Bot

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: 's avatarAndreas Haas <ahaas@chromium.org>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#51355}
parent 4b49f844
...@@ -46,6 +46,9 @@ void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value, ...@@ -46,6 +46,9 @@ void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value,
case kWasmF32: case kWasmF32:
TurboAssembler::Move(reg.fp(), value.to_f32_boxed().get_scalar()); TurboAssembler::Move(reg.fp(), value.to_f32_boxed().get_scalar());
break; break;
case kWasmF64:
BAILOUT("LoadConstant kWasmF64");
break;
default: default:
UNREACHABLE(); UNREACHABLE();
} }
......
...@@ -41,6 +41,9 @@ void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value, ...@@ -41,6 +41,9 @@ void LiftoffAssembler::LoadConstant(LiftoffRegister reg, WasmValue value,
case kWasmF32: case kWasmF32:
TurboAssembler::Move(reg.fp(), value.to_f32_boxed().get_scalar()); TurboAssembler::Move(reg.fp(), value.to_f32_boxed().get_scalar());
break; break;
case kWasmF64:
BAILOUT("LoadConstant kWasmF64");
break;
default: default:
UNREACHABLE(); UNREACHABLE();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment