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

Unified Diff: src/IceClFlags.h

Issue 1424923005: Add workaround to allow testing of ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 5 years, 1 month 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
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index 1072bd0bfb4282eefb850561521e453cdc334043..fc2087ed012608de28156e63c5c90f072996133e 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -49,6 +49,9 @@ public:
bool getAllowIacaMarks() const { return AllowIacaMarks; }
void setAllowIacaMarks(bool NewValue) { AllowIacaMarks = NewValue; }
+ bool getAllowUnsafeIas() const { return AllowUnsafeIas; }
+ void setAllowUnsafeIas(bool NewValue) { AllowUnsafeIas = NewValue; }
+
bool getAllowUninitializedGlobals() const {
return AllowUninitializedGlobals;
}
@@ -256,6 +259,7 @@ private:
bool AllowExternDefinedSymbols;
bool AllowIacaMarks;
bool AllowUninitializedGlobals;
+ bool AllowUnsafeIas;
Jim Stichnoth 2015/11/04 01:01:09 Can we have a TODO to nuke this flag?
Karl 2015/11/04 16:02:40 Done.
bool DataSections;
bool DecorateAsm;
bool DisableHybridAssembly;
« pydir/crosstest_generator.py ('K') | « src/IceAssemblerARM32.h ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698