Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: src/IceAssembler.h

Issue 1182673003: Subzero: Fix compilation error in MINIMAL=1 or NOASSERT=1 mode. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssembler.h
diff --git a/src/IceAssembler.h b/src/IceAssembler.h
index 55ef088fa9ff4945f87e074a9616b1ce77933e7d..69faa95f98809635ecb66ffede847d95310957a4 100644
--- a/src/IceAssembler.h
+++ b/src/IceAssembler.h
@@ -96,8 +96,8 @@ public:
public:
explicit EnsureCapacity(AssemblerBuffer *Buffer) {
- if (Buffer->cursor() >= buffer->limit())
- buffer->extendCapacity();
+ if (Buffer->cursor() >= Buffer->limit())
+ Buffer->extendCapacity();
}
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698