diff options
Diffstat (limited to 'chromium/v8/src/regexp-stack.h')
-rw-r--r-- | chromium/v8/src/regexp-stack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/v8/src/regexp-stack.h b/chromium/v8/src/regexp-stack.h index 745782d73b7..d18ce708d62 100644 --- a/chromium/v8/src/regexp-stack.h +++ b/chromium/v8/src/regexp-stack.h @@ -41,7 +41,7 @@ class RegExpStack { // Gives the top of the memory used as stack. Address stack_base() { - ASSERT(thread_local_.memory_size_ != 0); + DCHECK(thread_local_.memory_size_ != 0); return thread_local_.memory_ + thread_local_.memory_size_; } |