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

Unified Diff: src/IceAssembler.h

Issue 1656023002: Fix skip_unimplemented for filetype=obj in ARM. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix mangled code. Created 4 years, 11 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 | src/IceAssembler.cpp » ('j') | 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 d3111adcbe5e19a6fca055c150a78a85726b1613..5c8091d86b10b09b181bd0a24fb83a22f06a0185 100644
--- a/src/IceAssembler.h
+++ b/src/IceAssembler.h
@@ -184,6 +184,7 @@ public:
/// Mark that an attempt was made to emit, but failed. Hence, in order to
/// continue, one must emit a text fixup.
void setNeedsTextFixup() { TextFixupNeeded = true; }
+ void resetNeedsTextFixup() { TextFixupNeeded = false; }
/// Returns true if last emit failed and needs a text fixup.
bool needsTextFixup() const { return TextFixupNeeded; }
@@ -310,6 +311,7 @@ public:
}
void setNeedsTextFixup() { Buffer.setNeedsTextFixup(); }
+ void resetNeedsTextFixup() { Buffer.resetNeedsTextFixup(); }
bool needsTextFixup() const { return Buffer.needsTextFixup(); }
« no previous file with comments | « no previous file | src/IceAssembler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698