Skip to content

Commit b8f66fe

Browse files
committed
Merge branch 'store-to-null-crashes' of github.com:krzysz00/llvm-project into store-to-null-crashes
2 parents 806e014 + 90473a8 commit b8f66fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AMDGPU/AMDGPULowerBufferFatPointers.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2368,7 +2368,7 @@ static bool containsBufferFatPointers(const Function &F,
23682368
for (const BasicBlock &BB : F)
23692369
for (const Instruction &I : BB) {
23702370
HasFatPointers |= (I.getType() != TypeMap->remapType(I.getType()));
2371-
// Catch null pointer constasts in loads, stores, etc.
2371+
// Catch null pointer constants in loads, stores, etc.
23722372
for (const Value *V : I.operand_values())
23732373
HasFatPointers |= (V->getType() != TypeMap->remapType(V->getType()));
23742374
}

0 commit comments

Comments
 (0)