Index: src/IceCfgNode.h |
diff --git a/src/IceCfgNode.h b/src/IceCfgNode.h |
index b81c5c204a890918d574b79e69cc9abb6c7b9c60..b92e63b805e6734811a989e3f5b3df931fef4965 100644 |
--- a/src/IceCfgNode.h |
+++ b/src/IceCfgNode.h |
@@ -72,7 +72,7 @@ public: |
/// @{ |
InstList &getInsts() { return Insts; } |
PhiList &getPhis() { return Phis; } |
- void appendInst(Inst *Instr); |
+ void appendInst(Inst *Instr, bool AllowPhisAnywhere = false); |
void renumberInstructions(); |
/// Rough and generally conservative estimate of the number of instructions in |
/// the block. It is updated when an instruction is added, but not when |
@@ -110,6 +110,9 @@ public: |
void profileExecutionCount(VariableDeclaration *Var); |
+ void addOutEdge(CfgNode *Out) { OutEdges.push_back(Out); } |
+ void addInEdge(CfgNode *In) { InEdges.push_back(In); } |
+ |
private: |
CfgNode(Cfg *Func, SizeT Number); |
bool livenessValidateIntervals(Liveness *Liveness) const; |