[polly] r255580 - Fix typos; NFC

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 14 15:41:32 PST 2015


Author: meinersbur
Date: Mon Dec 14 17:41:32 2015
New Revision: 255580

URL: http://llvm.org/viewvc/llvm-project?rev=255580&view=rev
Log:
Fix typos; NFC

Modified:
    polly/trunk/include/polly/ScopInfo.h
    polly/trunk/lib/CodeGen/BlockGenerators.cpp

Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=255580&r1=255579&r2=255580&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Mon Dec 14 17:41:32 2015
@@ -161,7 +161,7 @@ public:
     ///                                     |
     ///                    ___________________________________
     ///                    |DefBB:                           |
-    ///                    |  store %float %V, float* %V.sa2 |
+    ///                    |  store %float %V, float* %V.s2a |
     ///                    -----------------------------------
     ///                           |                   |
     /// ____________________________________ ___________________________________
@@ -494,7 +494,7 @@ private:
   ///
   /// For memory accesses of kind MK_Value the access instruction of a load
   /// access is the instruction that uses the load. The access instruction of
-  /// a write access is the intruction that defines the llvm::Value.
+  /// a write access is the instruction that defines the llvm::Value.
   Instruction *AccessInstruction;
 
   /// @brief The value associated with this memory access.

Modified: polly/trunk/lib/CodeGen/BlockGenerators.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGen/BlockGenerators.cpp?rev=255580&r1=255579&r2=255580&view=diff
==============================================================================
--- polly/trunk/lib/CodeGen/BlockGenerators.cpp (original)
+++ polly/trunk/lib/CodeGen/BlockGenerators.cpp Mon Dec 14 17:41:32 2015
@@ -92,7 +92,7 @@ Value *BlockGenerator::trySynthesizeNewV
 Value *BlockGenerator::getNewValue(ScopStmt &Stmt, Value *Old, ValueMapT &BBMap,
                                    LoopToScevMapT &LTS, Loop *L) const {
   // Constants that do not reference any named value can always remain
-  // unchanged. Handle them early to avoid expensive map loopups. We do not take
+  // unchanged. Handle them early to avoid expensive map lookups. We do not take
   // the fast-path for external constants which are referenced through globals
   // as these may need to be rewritten when distributing code accross different
   // LLVM modules.




More information about the llvm-commits mailing list