diff options
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index f816c1485d..3064729597 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -220,6 +220,10 @@ class CompilerOptions final { return baseline_; } + bool ProfileBranches() const { + return profile_branches_; + } + // Are we compiling an app image? bool IsAppImage() const { return image_type_ == ImageType::kAppImage; @@ -427,6 +431,7 @@ class CompilerOptions final { bool dump_timings_; bool dump_pass_timings_; bool dump_stats_; + bool profile_branches_; // Info for profile guided compilation. const ProfileCompilationInfo* profile_compilation_info_; |