Commit 326534a3 by Jim Stichnoth

Subzero: Fix compilation error in MINIMAL=1 or NOASSERT=1 mode.

BUG= none R=jpp@chromium.org Review URL: https://codereview.chromium.org/1182673003
parent fb79284d
......@@ -96,8 +96,8 @@ public:
public:
explicit EnsureCapacity(AssemblerBuffer *Buffer) {
if (Buffer->cursor() >= buffer->limit())
buffer->extendCapacity();
if (Buffer->cursor() >= Buffer->limit())
Buffer->extendCapacity();
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment