[polly] r311472 - [ScopInfo] Fix typos in comment. NFC.

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 22 10:32:52 PDT 2017


Author: meinersbur
Date: Tue Aug 22 10:32:51 2017
New Revision: 311472

URL: http://llvm.org/viewvc/llvm-project?rev=311472&view=rev
Log:
[ScopInfo] Fix typos in comment. NFC.

Modified:
    polly/trunk/include/polly/ScopInfo.h

Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=311472&r1=311471&r2=311472&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Tue Aug 22 10:32:51 2017
@@ -848,10 +848,11 @@ public:
   /// Get the original base address of this access (e.g. A for A[i+j]) when
   /// detected.
   ///
-  /// This adress may differ from the base address referenced by the Original
+  /// This address may differ from the base address referenced by the original
   /// ScopArrayInfo to which this array belongs, as this memory access may
-  /// have been unified to a ScopArray which has a different but identically
-  /// valued base pointer in case invariant load hoisting is enabled.
+  /// have been canonicalized to a ScopArrayInfo which has a different but
+  /// identically-valued base pointer in case invariant load hoisting is
+  /// enabled.
   Value *getOriginalBaseAddr() const { return BaseAddr; }
 
   /// Get the detection-time base array isl::id for this access.




More information about the llvm-commits mailing list