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

Unified Diff: src/IceClFlags.h

Issue 1260093003: Introduce the ability to insert IACA (Intel Architecture Code Analyzer) marks to (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 4 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/IceAssemblerX86BaseImpl.h ('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 26982365048708ca9ceb726059016772d174bbf5..2ce3b4e999b7e592665e43588db093226b78d896 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -39,6 +39,9 @@ public:
bool getAllowErrorRecovery() const { return AllowErrorRecovery; }
void setAllowErrorRecovery(bool NewValue) { AllowErrorRecovery = NewValue; }
+ bool getAllowIacaMarks() const { return AllowIacaMarks; }
+ void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; }
+
bool getAllowUninitializedGlobals() const {
return AllowUninitializedGlobals;
}
@@ -229,6 +232,7 @@ public:
private:
bool AllowErrorRecovery;
+ bool AllowIacaMarks;
bool AllowUninitializedGlobals;
bool DataSections;
bool DecorateAsm;
« no previous file with comments | « src/IceAssemblerX86BaseImpl.h ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698