Fix spelling.
authorMisha Brukman <brukman+llvm@gmail.com>
Fri, 10 Oct 2003 17:42:19 +0000 (17:42 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Fri, 10 Oct 2003 17:42:19 +0000 (17:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9021 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/Interval.h
include/llvm/Pass.h
include/llvm/Support/CallSite.h
lib/ExecutionEngine/Interpreter/Execution.cpp
lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp

index 86965df90d9ba749f63d73f996469102135af842..8c7569fca81777c52cfddc0ab0e1582b0867836a 100644 (file)
@@ -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<BasicBlock*> Successors;
 
index 637d26bf5543bf43f3666bfed0495a45991394c7..de339b4988647feb4eef5d0e05a6cae67c32d752 100644 (file)
@@ -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;
 
index c30f00c9b9a70f8c2c0d02a7ec8b5381d32cc7be..dc137d83b5fe23e15a8d4afb2e4e7a45becdce2b 100644 (file)
@@ -52,7 +52,7 @@ public:
     return dyn_cast<Function>(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);
index e6ca036c3ff8387f440e71526183647ee4850480..7d9d727e76674ecdd824cc7639af1e1a9bdd3d60 100644 (file)
@@ -640,7 +640,7 @@ GenericValue Interpreter::executeGEPOperation(Value *Ptr, User::op_iterator I,
     if (const StructType *STy = dyn_cast<StructType>(Ty)) {
       const StructLayout *SLO = TD.getStructLayout(STy);
       
-      // Indicies must be ubyte constants...
+      // Indices must be ubyte constants...
       const ConstantUInt *CPU = cast<ConstantUInt>(*I);
       assert(CPU->getType() == Type::UByteTy);
       unsigned Index = CPU->getValue();
index a7814397a2b80e6d8c06d7b015ea3571563526ac..12a2936b0c55fc513ffc8eada8b64228d0775bce 100644 (file)
@@ -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<const Function *, ExFunc>::iterator FI = Functions.find(M);
   ExFunc Fn = (FI == Functions.end()) ? lookupFunction(M) : FI->second;
   if (Fn == 0) {