Commit 9726db81 authored by chunyang.dai's avatar chunyang.dai Committed by Commit bot

X87: Disable test case for X87 because of double register number restriction.

These two test cases introduced by 8525136b require that the double register is >=2.
But currently on x87 turbofan implementation only 1 double register is supported.

BUG=

Review URL: https://codereview.chromium.org/1308763003

Cr-Commit-Position: refs/heads/master@{#30321}
parent edc89801
......@@ -847,7 +847,7 @@ TEST(Int64Select_registers) {
TEST(Float32Select_registers) {
if (DoubleRegister::kMaxNumAllocatableRegisters < 2) return;
if (RegisterConfiguration::ArchDefault()->num_double_registers() < 2) return;
int rarray[] = {0};
ArgsBuffer<float32>::Sig sig(2);
......@@ -869,7 +869,7 @@ TEST(Float32Select_registers) {
TEST(Float64Select_registers) {
if (DoubleRegister::kMaxNumAllocatableRegisters < 2) return;
if (RegisterConfiguration::ArchDefault()->num_double_registers() < 2) return;
int rarray[] = {0};
ArgsBuffer<float64>::Sig sig(2);
......
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