[compiler-rt] Added missing BitmapFirst and BitmapLast in InstrProfilingPlatformOth… (PR #96539)

via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 24 12:26:04 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-pgo

Author: None (bbarwik)

<details>
<summary>Changes</summary>

Fixes https://github.com/llvm/llvm-project/issues/96536

---
Full diff: https://github.com/llvm/llvm-project/pull/96539.diff


1 Files Affected:

- (modified) compiler-rt/lib/profile/InstrProfilingPlatformOther.c (+2) 


``````````diff
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) {

``````````

</details>


https://github.com/llvm/llvm-project/pull/96539


More information about the llvm-commits mailing list