[llvm] 61ef286 - Fix signed/unsigned mismatch warning (#134255)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 07:56:36 PDT 2025
Author: gbMattN
Date: 2025-04-03T15:56:33+01:00
New Revision: 61ef28650626dd4f651a250005c77255d8086f69
URL: https://github.com/llvm/llvm-project/commit/61ef28650626dd4f651a250005c77255d8086f69
DIFF: https://github.com/llvm/llvm-project/commit/61ef28650626dd4f651a250005c77255d8086f69.diff
LOG: Fix signed/unsigned mismatch warning (#134255)
Added:
Modified:
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
index fcac686b4cd10..a4c6c61e57998 100644
--- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
+++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -3447,7 +3447,8 @@ static StringRef getAllocaName(AllocaInst *AI) {
if (!isa<MDTuple>(Annotation))
continue;
auto AnnotationTuple = cast<MDTuple>(Annotation);
- for (int Index = 0; Index < AnnotationTuple->getNumOperands(); Index++) {
+ for (unsigned Index = 0; Index < AnnotationTuple->getNumOperands();
+ Index++) {
// All annotations are strings
auto MetadataString =
cast<MDString>(AnnotationTuple->getOperand(Index));
More information about the llvm-commits
mailing list