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

Unified Diff: test/compiler-unittests/instruction-selector-unittest.h

Issue 522873002: Removal of the deoptimization block from Turbofan (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Change constant capitalization Created 6 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 | « test/cctest/compiler/test-scheduler.cc ('k') | test/compiler-unittests/instruction-selector-unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/compiler-unittests/instruction-selector-unittest.h
diff --git a/test/compiler-unittests/instruction-selector-unittest.h b/test/compiler-unittests/instruction-selector-unittest.h
index 80e5344dea3ed6545e87ca268d8e1e69e36dc083..f264eb042b23d6e4be731c4e0310752a1153216f 100644
--- a/test/compiler-unittests/instruction-selector-unittest.h
+++ b/test/compiler-unittests/instruction-selector-unittest.h
@@ -150,12 +150,12 @@ class InstructionSelectorTest : public CompilerTest {
return UnallocatedOperand::cast(operand)->virtual_register();
}
- FrameStateDescriptor* GetDeoptimizationEntry(int deoptimization_id) {
- EXPECT_LT(deoptimization_id, GetDeoptimizationEntryCount());
+ FrameStateDescriptor* GetFrameStateDescriptor(int deoptimization_id) {
+ EXPECT_LT(deoptimization_id, GetFrameStateDescriptorCount());
return deoptimization_entries_[deoptimization_id];
}
- int GetDeoptimizationEntryCount() {
+ int GetFrameStateDescriptorCount() {
return static_cast<int>(deoptimization_entries_.size());
}
« no previous file with comments | « test/cctest/compiler/test-scheduler.cc ('k') | test/compiler-unittests/instruction-selector-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698