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 624663002: Introduce model of global initializers in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: add more tests. Created 6 years, 2 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 eb3cb705e24baefeb312f96394933d5b6fdf15eb..d71ad2e5fda7a3d76eec49ee9d3dd1c98ebcf5f0 100644
--- a/src/IceTargetLoweringX8632.h
+++ b/src/IceTargetLoweringX8632.h
@@ -486,9 +486,9 @@ public:
static TargetGlobalInitLowering *create(GlobalContext *Ctx) {
return new TargetGlobalInitX8632(Ctx);
}
- void lower(const IceString &Name, SizeT Align, bool IsInternal, bool IsConst,
- bool IsZeroInitializer, SizeT Size, const char *Data,
- bool DisableTranslation) override;
+
+ virtual void lower(const GlobalAddress &Addr,
+ bool DisableTranslation) override;
protected:
TargetGlobalInitX8632(GlobalContext *Ctx);

Powered by Google App Engine
This is Rietveld 408576698