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}
This commit is contained in:
chunyang.dai 2015-08-24 01:43:49 -07:00 committed by Commit bot
parent edc8980115
commit 9726db8199

View File

@ -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);