diff options
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index 145dbfb6b9..ef225d9a6a 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -47,7 +47,7 @@ class HGraphBuilder : public ValueObject { const CodeItemDebugInfoAccessor& accessor, DataType::Type return_type = DataType::Type::kInt32); - GraphAnalysisResult BuildGraph(bool build_for_inline = false); + GraphAnalysisResult BuildGraph(); void BuildIntrinsicGraph(ArtMethod* method); static constexpr const char* kBuilderPassName = "builder"; @@ -55,10 +55,6 @@ class HGraphBuilder : public ValueObject { private: bool SkipCompilation(size_t number_of_branches); - // When inlining, we sometimes want to add an extra Goto block before the Exit block. This is done - // in the building phase as we do not allow the inlining phase to add new instructions. - void MaybeAddExtraGotoBlocks(); - HGraph* const graph_; const DexFile* const dex_file_; const CodeItemDebugInfoAccessor code_item_accessor_; // null for intrinsic graph. |