We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c14b6e9 commit 61ef286Copy full SHA for 61ef286
llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
@@ -3447,7 +3447,8 @@ static StringRef getAllocaName(AllocaInst *AI) {
3447
if (!isa<MDTuple>(Annotation))
3448
continue;
3449
auto AnnotationTuple = cast<MDTuple>(Annotation);
3450
- for (int Index = 0; Index < AnnotationTuple->getNumOperands(); Index++) {
+ for (unsigned Index = 0; Index < AnnotationTuple->getNumOperands();
3451
+ Index++) {
3452
// All annotations are strings
3453
auto MetadataString =
3454
cast<MDString>(AnnotationTuple->getOperand(Index));
0 commit comments