Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Unified Diff: test/cctest/compiler/test-run-native-calls.cc

Issue 1308763003: X87: Disable test case for X87 because of double register number restriction. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/compiler/test-run-native-calls.cc
diff --git a/test/cctest/compiler/test-run-native-calls.cc b/test/cctest/compiler/test-run-native-calls.cc
index 13901653b5c9ca5040b73169011b4c605128858a..2e255c7729c6c400be1b82def3891103bb327fce 100644
--- a/test/cctest/compiler/test-run-native-calls.cc
+++ b/test/cctest/compiler/test-run-native-calls.cc
@@ -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);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698