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

Unified Diff: src/IceClFlags.h

Issue 1790063003: Subzero: Control whether deleted instructions are retained. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Move comment into .h file Created 4 years, 9 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 | « src/IceCfgNode.cpp ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index d10c8c4d26bfb5c5f0b342e11726053ad196ae8a..971ad9d7adf2744288d66fbcf03c725fbca6a6fe 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -164,6 +164,11 @@ public:
GenerateUnitTestMessages = NewValue;
}
+ /// Get the value of ClFlags::KeepDeletedInsts
+ bool getKeepDeletedInsts() const { return KeepDeletedInsts; }
+ /// Set ClFlags::KeepDeletedInsts to a new value
+ void setKeepDeletedInsts(bool NewValue) { KeepDeletedInsts = NewValue; }
+
/// Get the value of ClFlags::MockBoundsCheck
bool getMockBoundsCheck() const { return MockBoundsCheck; }
/// Set ClFlags::MockBoundsCheck to a new value
@@ -437,6 +442,8 @@ private:
bool FunctionSections;
/// Initialized to false; not set by the command line.
bool GenerateUnitTestMessages;
+ /// see anonymous_namespace{IceClFlags.cpp}::KeepDeletedInsts
+ bool KeepDeletedInsts;
/// see anonymous_namespace{IceClFlags.cpp}::MockBoundsCheck
bool MockBoundsCheck;
/// see anonymous_namespace{IceClFlags.cpp}::EnablePhiEdgeSplit
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698