summaryrefslogtreecommitdiff
path: root/compiler/dex/quick/codegen_util.cc
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2015-04-22 19:59:01 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-04-22 19:59:02 +0000
commit0ad14266a71c8579cd6bebcaf42f56fae37c988f (patch)
treed04d27d21b3c7733d784e303f01f873bb99e7770 /compiler/dex/quick/codegen_util.cc
parent1f02f1a7b3073b8fef07770a67fbf94afad317f0 (diff)
parent2cebb24bfc3247d3e9be138a3350106737455918 (diff)
Merge "Replace NULL with nullptr"
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
-rw-r--r--compiler/dex/quick/codegen_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc
index 9f4a318cc2..fb68335e6e 100644
--- a/compiler/dex/quick/codegen_util.cc
+++ b/compiler/dex/quick/codegen_util.cc
@@ -1080,7 +1080,7 @@ Mir2Lir::Mir2Lir(CompilationUnit* cu, MIRGraph* mir_graph, ArenaAllocator* arena
reginfo_map_.reserve(RegStorage::kMaxRegs);
pointer_storage_.reserve(128);
slow_paths_.reserve(32);
- // Reserve pointer id 0 for nullptr.
+ // Reserve pointer id 0 for null.
size_t null_idx = WrapPointer<void>(nullptr);
DCHECK_EQ(null_idx, 0U);
}