[llvm-commits] [polly] r152109 - /polly/trunk/lib/CodeGeneration.cpp
Tobias Grosser
grosser at fim.uni-passau.de
Mon Mar 5 23:38:58 PST 2012
Author: grosser
Date: Tue Mar 6 01:38:57 2012
New Revision: 152109
URL: http://llvm.org/viewvc/llvm-project?rev=152109&view=rev
Log:
CodeGen: Fix typo 'form' -> 'from'
Suggested by: Sebastian Pop <sebpop at gmail.com>
Modified:
polly/trunk/lib/CodeGeneration.cpp
Modified: polly/trunk/lib/CodeGeneration.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/CodeGeneration.cpp?rev=152109&r1=152108&r2=152109&view=diff
==============================================================================
--- polly/trunk/lib/CodeGeneration.cpp (original)
+++ polly/trunk/lib/CodeGeneration.cpp Tue Mar 6 01:38:57 2012
@@ -254,7 +254,7 @@
/// @brief Get the new version of a Value.
///
/// @param Old The old Value.
- /// @param BBMap A mapping form old values to their new values
+ /// @param BBMap A mapping from old values to their new values
/// (for values recalculated within this basic block).
/// @param GlobalMap A mapping from old values to their new values
/// (for values recalculated in the new ScoP, but not
@@ -291,7 +291,7 @@
/// This copies a single Instruction and updates references to old values
/// with references to new values, as defined by GlobalMap and BBMap.
///
- /// @param BBMap A mapping form old values to their new values
+ /// @param BBMap A mapping from old values to their new values
/// (for values recalculated within this basic block).
/// @param GlobalMap A mapping from old values to their new values
/// (for values recalculated in the new ScoP, but not
@@ -1878,7 +1878,7 @@
char CodeGeneration::ID = 1;
INITIALIZE_PASS_BEGIN(CodeGeneration, "polly-codegen",
- "Polly - Create LLVM-IR form SCoPs", false, false)
+ "Polly - Create LLVM-IR from SCoPs", false, false)
INITIALIZE_PASS_DEPENDENCY(CloogInfo)
INITIALIZE_PASS_DEPENDENCY(Dependences)
INITIALIZE_PASS_DEPENDENCY(DominatorTree)
@@ -1887,7 +1887,7 @@
INITIALIZE_PASS_DEPENDENCY(ScopDetection)
INITIALIZE_PASS_DEPENDENCY(TargetData)
INITIALIZE_PASS_END(CodeGeneration, "polly-codegen",
- "Polly - Create LLVM-IR form SCoPs", false, false)
+ "Polly - Create LLVM-IR from SCoPs", false, false)
Pass *polly::createCodeGenerationPass() {
return new CodeGeneration();
More information about the llvm-commits
mailing list