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/IceClFlags.h

Issue 1448783004: Fix translation of instruction "move" in ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit. 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
« no previous file with comments | « no previous file | 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 6683df4b4c7b3053697dc36a393d433732a0ff17..1072bd0bfb4282eefb850561521e453cdc334043 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -49,9 +49,6 @@ 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;
}
@@ -259,9 +256,6 @@ private:
bool AllowExternDefinedSymbols;
bool AllowIacaMarks;
bool AllowUninitializedGlobals;
- // TODO(kschimpf): This is a temporary flag. Nuke this once the ARM integrated
- // assembler is working.
- bool AllowUnsafeIas;
bool DataSections;
bool DecorateAsm;
bool DisableHybridAssembly;
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698