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

Unified Diff: test/unittests/compiler/checkpoint-elimination-unittest.cc

Issue 2022033004: [turbofan] Rename {CheckPoint} to {Checkpoint} everywhere. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_turbofan-checkpoint-reduce
Patch Set: Created 4 years, 7 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 | « src/compiler/verifier.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/unittests/compiler/checkpoint-elimination-unittest.cc
diff --git a/test/unittests/compiler/checkpoint-elimination-unittest.cc b/test/unittests/compiler/checkpoint-elimination-unittest.cc
index 109db519f2923a26b04bfc8e9f13e487292b6551..a201fc9a5591db3755068769706c76dfd7133a39 100644
--- a/test/unittests/compiler/checkpoint-elimination-unittest.cc
+++ b/test/unittests/compiler/checkpoint-elimination-unittest.cc
@@ -39,15 +39,15 @@ const Operator kOpNoWrite(0, Operator::kNoWrite, "OpNoWrite", 0, 1, 0, 0, 1, 0);
} // namespace
// -----------------------------------------------------------------------------
-// CheckPoint
+// Checkpoint
-TEST_F(CheckpointEliminationTest, CheckPointChain) {
+TEST_F(CheckpointEliminationTest, CheckpointChain) {
Node* const control = graph()->start();
Node* frame_state = EmptyFrameState();
- Node* checkpoint1 = graph()->NewNode(common()->CheckPoint(), frame_state,
+ Node* checkpoint1 = graph()->NewNode(common()->Checkpoint(), frame_state,
graph()->start(), control);
Node* effect_link = graph()->NewNode(&kOpNoWrite, checkpoint1);
- Node* checkpoint2 = graph()->NewNode(common()->CheckPoint(), frame_state,
+ Node* checkpoint2 = graph()->NewNode(common()->Checkpoint(), frame_state,
effect_link, control);
Reduction r = Reduce(checkpoint2);
ASSERT_TRUE(r.Changed());
« no previous file with comments | « src/compiler/verifier.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698