[compiler-rt] Added missing BitmapFirst and BitmapLast in InstrProfilingPlatformOth… (PR #96539)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 6 14:05:16 PDT 2024
https://github.com/bbarwik updated https://github.com/llvm/llvm-project/pull/96539
>From 4c7629f89d2a8c05d105169a24bcd1364543cbc9 Mon Sep 17 00:00:00 2001
From: bbarwik <bbarwik at gmail.com>
Date: Mon, 24 Jun 2024 21:24:22 +0200
Subject: [PATCH] Added missing BitmapFirst and BitmapLast in
InstrProfilingPlatformOther.c
---
compiler-rt/lib/profile/InstrProfilingPlatformOther.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/compiler-rt/lib/profile/InstrProfilingPlatformOther.c b/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
index aa79a5641ceca..2954442be7960 100644
--- a/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
+++ b/compiler-rt/lib/profile/InstrProfilingPlatformOther.c
@@ -26,6 +26,8 @@ static const char *VNamesFirst = NULL;
static const char *VNamesLast = NULL;
static char *CountersFirst = NULL;
static char *CountersLast = NULL;
+static char *BitmapFirst = NULL;
+static char *BitmapLast = NULL;
static uint32_t *OrderFileFirst = NULL;
static const void *getMinAddr(const void *A1, const void *A2) {
More information about the llvm-commits
mailing list