Skip to content

Commit 0f723b3

Browse files
rmacnak-googleCommit Queue
authored andcommitted
[vm] Fix build on gcc 14.2.0.
TEST=local build Bug: #59617 Change-Id: I4be6ceb489542cee6754a23efdf15401ec91a62b Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/397983 Reviewed-by: Alexander Aprelev <[email protected]> Commit-Queue: Ryan Macnak <[email protected]>
1 parent 91c05b2 commit 0f723b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/vm/compiler/backend/inliner.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,7 +1232,7 @@ class CallSiteInliner : public ValueObject {
12321232
constant_arg_count == 0 ? function.optimized_instruction_count() : 0;
12331233
const intptr_t call_site_count =
12341234
constant_arg_count == 0 ? function.optimized_call_site_count() : 0;
1235-
InliningDecision decision =
1235+
volatile InliningDecision decision =
12361236
ShouldWeInline(function, instruction_count, call_site_count);
12371237
if (!decision.value) {
12381238
TRACE_INLINING(

0 commit comments

Comments
 (0)