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

Unified Diff: src/compiler/frame.cc

Issue 1578723002: [turbofan] Build s/NULL/nullptr/g and CHECK(x != nullptr) to CHECK_NOT_NULL(x). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 11 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/frame.h ('k') | src/compiler/graph-reducer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/frame.cc
diff --git a/src/compiler/frame.cc b/src/compiler/frame.cc
index 64ef5ed102f5b7176eb1836d34cfed9685c4c1a5..b08030b8c6634fedbdd1e95a1f63caf7e9f93789 100644
--- a/src/compiler/frame.cc
+++ b/src/compiler/frame.cc
@@ -18,8 +18,8 @@ Frame::Frame(int fixed_frame_size_in_slots, const CallDescriptor* descriptor)
frame_slot_count_(fixed_frame_size_in_slots),
callee_saved_slot_count_(0),
spill_slot_count_(0),
- allocated_registers_(NULL),
- allocated_double_registers_(NULL) {}
+ allocated_registers_(nullptr),
+ allocated_double_registers_(nullptr) {}
void FrameAccessState::SetFrameAccessToDefault() {
« no previous file with comments | « src/compiler/frame.h ('k') | src/compiler/graph-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698