diff options
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 35bc928620..7e49199b69 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -351,6 +351,9 @@ class HGraph : public ArenaObject<kArenaAllocMisc> { return instruction_set_; } + // TODO: Remove once the full compilation pipeline is enabled for try/catch. + bool HasTryCatch() const; + private: void VisitBlockForDominatorTree(HBasicBlock* block, HBasicBlock* predecessor, @@ -4566,6 +4569,8 @@ class HLoadException : public HExpression<0> { public: HLoadException() : HExpression(Primitive::kPrimNot, SideEffects::None()) {} + bool CanBeNull() const OVERRIDE { return false; } + DECLARE_INSTRUCTION(LoadException); private: |