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

Issue 455633002: Subzero: Add the "llvm2ice -ffunction-sections" argument. (Closed) Base URL: https://gerrit.chromium.org/gerrit/p/native_client/pnacl-subzero.git@master
Patch Set: Rebase Created 6 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/IceIntrinsics.cpp ('k') | src/IceTranslator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTranslator.h
diff --git a/src/IceTranslator.h b/src/IceTranslator.h
index 11899513e415337d0b1b01a53747dfa9668093e3..51e4df0fbb01782e718afdff3ca1a282846be0c0 100644
--- a/src/IceTranslator.h
+++ b/src/IceTranslator.h
@@ -29,15 +29,13 @@ class GlobalContext;
// machine instructions.
class Translator {
public:
- Translator(GlobalContext *Ctx, ClFlags &Flags)
- : Ctx(Ctx), Flags(Flags), ErrorStatus(0) {}
+ Translator(GlobalContext *Ctx) : Ctx(Ctx), ErrorStatus(0) {}
~Translator();
bool getErrorStatus() const { return ErrorStatus; }
protected:
GlobalContext *Ctx;
- ClFlags &Flags;
// The exit status of the translation. False is successful. True
// otherwise.
bool ErrorStatus;
« no previous file with comments | « src/IceIntrinsics.cpp ('k') | src/IceTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698