From 71b04ca0c513b3434a706352ca5da0eb3c52f8f3 Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Thu, 18 Sep 2025 15:48:01 -0700 Subject: [PATCH 1/2] [scudo] Add missing tracing.h include to primary32 --- compiler-rt/lib/scudo/standalone/primary32.h | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler-rt/lib/scudo/standalone/primary32.h b/compiler-rt/lib/scudo/standalone/primary32.h index 645c3968ce3e1..4385f4aa58450 100644 --- a/compiler-rt/lib/scudo/standalone/primary32.h +++ b/compiler-rt/lib/scudo/standalone/primary32.h @@ -20,6 +20,7 @@ #include "stats.h" #include "string_utils.h" #include "thread_annotations.h" +#include "tracing.h" namespace scudo { From f24ce1fb20079dbe655cfeea8aeefd7af8204bae Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Thu, 18 Sep 2025 16:08:18 -0700 Subject: [PATCH 2/2] Add include common.h to tracing.h. --- compiler-rt/lib/scudo/standalone/tracing.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler-rt/lib/scudo/standalone/tracing.h b/compiler-rt/lib/scudo/standalone/tracing.h index ac1f746128823..6bcdab0417e9b 100644 --- a/compiler-rt/lib/scudo/standalone/tracing.h +++ b/compiler-rt/lib/scudo/standalone/tracing.h @@ -9,6 +9,8 @@ #ifndef SCUDO_TRACING_H_ #define SCUDO_TRACING_H_ +#include "common.h" + #if defined(SCUDO_ENABLE_TRACING) // This file must include definitions for all of the functions below.