[GVN] Fix a typo in comment
authorksyx <18738953+ksyx@users.noreply.github.com>
Wed, 17 Feb 2021 08:43:34 +0000 (16:43 +0800)
committerksyx <18738953+ksyx@users.noreply.github.com>
Tue, 23 Feb 2021 02:39:34 +0000 (10:39 +0800)
NFC.

Differential Revision: https://reviews.llvm.org/D97200

Reviewed By: fhahn

llvm/lib/Transforms/Scalar/GVN.cpp

index 37fce50..85ce8fc 100644 (file)
@@ -1774,7 +1774,7 @@ bool GVN::processLoad(LoadInst *L) {
       MSSAU->removeMemoryAccess(L);
     ++NumGVNLoad;
     reportLoadElim(L, AvailableValue, ORE);
-    // Tell MDA to rexamine the reused pointer since we might have more
+    // Tell MDA to reexamine the reused pointer since we might have more
     // information after forwarding it.
     if (MD && AvailableValue->getType()->isPtrOrPtrVectorTy())
       MD->invalidateCachedPointerInfo(AvailableValue);