From d5d96b9fcd779806555cf5db602f80d5a308a471 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 10 Oct 2003 17:42:19 +0000 Subject: [PATCH] Fix spelling. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9021 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/Interval.h | 2 +- include/llvm/Pass.h | 2 +- include/llvm/Support/CallSite.h | 2 +- lib/ExecutionEngine/Interpreter/Execution.cpp | 2 +- lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/llvm/Analysis/Interval.h b/include/llvm/Analysis/Interval.h index 86965df90d9..8c7569fca81 100644 --- a/include/llvm/Analysis/Interval.h +++ b/include/llvm/Analysis/Interval.h @@ -50,7 +50,7 @@ public: // Successors - List of BasicBlocks that are reachable directly from nodes in // this interval, but are not in the interval themselves. - // These nodes neccesarily must be header nodes for other intervals. + // These nodes necessarily must be header nodes for other intervals. // std::vector Successors; diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index 637d26bf554..de339b49886 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -65,7 +65,7 @@ public: /// implemented in terms of the name that is registered by one of the /// Registration templates, but can be overloaded directly, and if nothing /// else is available, C++ RTTI will be consulted to get a SOMEWHAT - /// intelligable name for the pass. + /// intelligible name for the pass. /// virtual const char *getPassName() const; diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h index c30f00c9b9a..dc137d83b5f 100644 --- a/include/llvm/Support/CallSite.h +++ b/include/llvm/Support/CallSite.h @@ -52,7 +52,7 @@ public: return dyn_cast(getCalledValue()); } - /// setCalledFunction - Set the callee to the specied value... + /// setCalledFunction - Set the callee to the specified value... /// void setCalledFunction(Value *V) { I->setOperand(0, V); diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index e6ca036c3ff..7d9d727e766 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp @@ -640,7 +640,7 @@ GenericValue Interpreter::executeGEPOperation(Value *Ptr, User::op_iterator I, if (const StructType *STy = dyn_cast(Ty)) { const StructLayout *SLO = TD.getStructLayout(STy); - // Indicies must be ubyte constants... + // Indices must be ubyte constants... const ConstantUInt *CPU = cast(*I); assert(CPU->getType() == Type::UByteTy); unsigned Index = CPU->getValue(); diff --git a/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index a7814397a2b..12a2936b0c5 100644 --- a/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -81,7 +81,7 @@ GenericValue Interpreter::callExternalFunction(Function *M, TheInterpreter = this; // Do a lookup to see if the function is in our cache... this should just be a - // defered annotation! + // deferred annotation! std::map::iterator FI = Functions.find(M); ExFunc Fn = (FI == Functions.end()) ? lookupFunction(M) : FI->second; if (Fn == 0) { -- 2.34.1