diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:57:28 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-10 17:57:28 +0000 |
commit | cf00c4ab3ba308d45d98c5ccab87362cf802facb (patch) | |
tree | ba6836d8bf430b9b2fb55ad5fd6d2a02f18a9f32 /lib/Analysis/DataStructure | |
parent | 452fea997232437902385e88366482b01957eeef (diff) |
Fix spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure')
-rw-r--r-- | lib/Analysis/DataStructure/Parallelize.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/DataStructure/Parallelize.cpp b/lib/Analysis/DataStructure/Parallelize.cpp index e533c4ea5e..09b7dc21cd 100644 --- a/lib/Analysis/DataStructure/Parallelize.cpp +++ b/lib/Analysis/DataStructure/Parallelize.cpp @@ -81,7 +81,7 @@ static bool isSync(const CallInst& CI) { // class Cilkifier // // Code generation pass that transforms code to identify where Cilk keywords -// should be inserted. This relies on dis -c to print out the keywords. +// should be inserted. This relies on `llvm-dis -c' to print out the keywords. //---------------------------------------------------------------------------- @@ -167,7 +167,7 @@ void Cilkifier::DFSVisitInstr(Instruction* I, else syncI = new CallInst(DummySyncFunc, std::vector<Value*>(), "", I); - // Remember the sync for each spawn to eliminate rendundant ones later + // Remember the sync for each spawn to eliminate redundant ones later spawnToSyncsMap[cast<CallInst>(root)].insert(syncI); return; @@ -494,7 +494,7 @@ bool Parallelize::run(Module& M) #undef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS #ifdef CAN_USE_BIND1ST_ON_REFERENCE_TYPE_ARGS - // Use this undecipherable STLese because erase invalidates iterators. + // Use this indecipherable STLese because erase invalidates iterators. // Otherwise we have to copy sets as above. hash_set<Function*>::iterator extrasBegin = std::remove_if(parallelFunctions.begin(), parallelFunctions.end(), |