Index: src/IceTargetLowering.h |
diff --git a/src/IceTargetLowering.h b/src/IceTargetLowering.h |
index 39fa5899ec8750585bc550de082647e8bb3515aa..80990df1569dc53f0993a4ea683e2cf6ff434524 100644 |
--- a/src/IceTargetLowering.h |
+++ b/src/IceTargetLowering.h |
@@ -257,6 +257,8 @@ public: |
virtual void lower(const VariableDeclaration &Var) = 0; |
+ virtual void lowerGlobalsELF(const VariableDeclarationList &Vars) = 0; |
Jim Stichnoth
2015/01/27 16:44:55
After you rebase, you'll find a new method here -
jvoung (off chromium)
2015/01/28 17:46:22
lower() has also become lowerInit() and the class
Jim Stichnoth
2015/01/28 20:35:08
Yeah... If you feel inspired, go ahead and make th
jvoung (off chromium)
2015/01/28 23:37:52
I guess I kind of like lowerGlobal() since it's ca
Jim Stichnoth
2015/01/29 00:38:14
OK. I also should have explicitly mentioned that
jvoung (off chromium)
2015/01/29 19:33:03
I was actually thinking TargetDataLowering also. I
|
+ |
protected: |
TargetGlobalInitLowering(GlobalContext *Ctx) : Ctx(Ctx) {} |
GlobalContext *Ctx; |