Index: src/compiler/linkage-impl.h |
diff --git a/src/compiler/linkage-impl.h b/src/compiler/linkage-impl.h |
index 7159bde59b0d64efdaf4d91b11c83376a81c4838..212a622ac082e475db1befcf991896ce68778eb2 100644 |
--- a/src/compiler/linkage-impl.h |
+++ b/src/compiler/linkage-impl.h |
@@ -12,7 +12,7 @@ namespace compiler { |
class LinkageHelper { |
public: |
static LinkageLocation TaggedStackSlot(int index) { |
- ASSERT(index < 0); |
+ DCHECK(index < 0); |
return LinkageLocation(kMachineTagged, index); |
} |
@@ -96,7 +96,7 @@ class LinkageHelper { |
TaggedRegisterLocation(LinkageTraits::ReturnValue2Reg()); |
} |
- ASSERT_LE(return_count, 2); |
+ DCHECK_LE(return_count, 2); |
locations[index++] = UnconstrainedRegister(kMachineTagged); // CEntryStub |