X87: Reland "Initial switch to Chromium-style CHECK_* and DCHECK_* macros
authorchunyang.dai <chunyang.dai@intel.com>
Mon, 9 Feb 2015 06:08:42 +0000 (22:08 -0800)
committerCommit bot <commit-bot@chromium.org>
Mon, 9 Feb 2015 06:08:58 +0000 (06:08 +0000)
port c65ae4f10c7273956e88db433f626b26a1377caf (r26346).

   fix one spelling error introduced by this CL.

original commit message:
  Reland "Initial switch to Chromium-style CHECK_* and DCHECK_* macros.".

BUG=

Review URL: https://codereview.chromium.org/886833006

Cr-Commit-Position: refs/heads/master@{#26507}

src/x87/full-codegen-x87.cc

index a7a5d71..200303e 100644 (file)
@@ -3702,7 +3702,7 @@ void FullCodeGenerator::EmitValueOf(CallRuntime* expr) {
 void FullCodeGenerator::EmitDateField(CallRuntime* expr) {
   ZoneList<Expression*>* args = expr->arguments();
   DCHECK(args->length() == 2);
-  DCHECK_NOT_NUL(args->at(1)->AsLiteral());
+  DCHECK_NOT_NULL(args->at(1)->AsLiteral());
   Smi* index = Smi::cast(*(args->at(1)->AsLiteral()->value()));
 
   VisitForAccumulatorValue(args->at(0));  // Load the object.