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

Unified Diff: src/IceTargetLoweringX8632.h

Issue 874353006: Write out global initializers and data rel directly to ELF file. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: review #1 Created 5 years, 11 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
Index: src/IceTargetLoweringX8632.h
diff --git a/src/IceTargetLoweringX8632.h b/src/IceTargetLoweringX8632.h
index 1ee3c1d9997a9edf177e5cb2385b1c030a7234c2..8d465d0ba72ea364fd27e53885bf40ae044de5fe 100644
--- a/src/IceTargetLoweringX8632.h
+++ b/src/IceTargetLoweringX8632.h
@@ -498,8 +498,9 @@ public:
return new TargetGlobalX8632(Ctx);
}
- virtual void lowerInit(const VariableDeclaration &Var) const final;
- virtual void lowerConstants(GlobalContext *Ctx) const final;
+ void lowerInit(const VariableDeclaration &Var) const final;
+ void lowerInitELF(const VariableDeclarationList &Vars) const final;
+ void lowerConstants(GlobalContext *Ctx) const final;
protected:
TargetGlobalX8632(GlobalContext *Ctx);

Powered by Google App Engine
This is Rietveld 408576698