From 089c5fc39d68b5670e20733f13a0bb472c71e27f Mon Sep 17 00:00:00 2001 From: Santiago Aboy Solanes Date: Fri, 2 Feb 2024 09:21:03 +0000 Subject: CompilerOptions refactor after aosp/2808063 * Updated comments * Made constants constexpr * Renamed kBaselineMaxCodeUnits to include "Inline" Test: art/test/testrunner/testrunner.py --host --64 --optimizing -b Change-Id: I37569b3d9e5eecfd65a505a79945bbe5b290fbbf --- compiler/optimizing/builder.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/optimizing/builder.cc') diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index 9233ea4fcd..1dea39626c 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -120,8 +120,8 @@ GraphAnalysisResult HGraphBuilder::BuildGraph() { return kAnalysisInvalidBytecode; } - // 2) Decide whether to skip this method based on its code size and number - // of branches. + // 2) Decide whether to skip compiling this method based on e.g. the compiler filter and method's + // code size. if (SkipCompilation()) { return kAnalysisSkipped; } -- cgit v1.2.3-59-g8ed1b