Fix apostrophos.
authorDan Gohman <gohman@apple.com>
Tue, 15 Sep 2009 15:08:33 +0000 (15:08 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 15 Sep 2009 15:08:33 +0000 (15:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81856 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/SmallSet.h
include/llvm/AbstractTypeUser.h
include/llvm/Analysis/LoopInfo.h
include/llvm/Analysis/ScalarEvolutionExpressions.h
include/llvm/CodeGen/LiveVariables.h
include/llvm/Support/Timer.h
include/llvm/Target/TargetSchedule.td

index caaa96c045f73423881f3ac5931639710e839485..d03f1bef15b11d98e8e4bb30c1fede7aa676c564 100644 (file)
@@ -30,7 +30,7 @@ namespace llvm {
 template <typename T, unsigned N>
 class SmallSet {
   /// Use a SmallVector to hold the elements here (even though it will never
-  /// reach it's 'large' stage) to avoid calling the default ctors of elements
+  /// reach its 'large' stage) to avoid calling the default ctors of elements
   /// we will never use.
   SmallVector<T, N> Vector;
   std::set<T> Set;
index c1216baabf8fac950ba59fcd29efd55897f0b6aa..86862e790a14d819527d3416465ab83d560e64be 100644 (file)
@@ -65,7 +65,7 @@ public:
                                   const Type *NewTy) = 0;
 
   /// The other case which AbstractTypeUsers must be aware of is when a type
-  /// makes the transition from being abstract (where it has clients on it's
+  /// makes the transition from being abstract (where it has clients on its
   /// AbstractTypeUsers list) to concrete (where it does not).  This method
   /// notifies ATU's when this occurs for a type.
   ///
index 003930ee45fd838cc489f7949ab544856a2897f7..a928ccdb8ef2b40faeb9294b6d35fdb23bf6a15d 100644 (file)
@@ -732,7 +732,7 @@ public:
     for (typename InvBlockTraits::ChildIteratorType I =
          InvBlockTraits::child_begin(BB), E = InvBlockTraits::child_end(BB);
          I != E; ++I)
-      if (DT.dominates(BB, *I))   // If BB dominates it's predecessor...
+      if (DT.dominates(BB, *I))   // If BB dominates its predecessor...
         TodoStack.push_back(*I);
 
     if (TodoStack.empty()) return 0;  // No backedges to this block...
@@ -758,7 +758,7 @@ public:
         if (LoopT *SubLoop =
             const_cast<LoopT *>(getLoopFor(X)))
           if (SubLoop->getHeader() == X && isNotAlreadyContainedIn(SubLoop, L)){
-            // Remove the subloop from it's current parent...
+            // Remove the subloop from its current parent...
             assert(SubLoop->ParentLoop && SubLoop->ParentLoop != L);
             LoopT *SLP = SubLoop->ParentLoop;  // SubLoopParent
             typename std::vector<LoopT *>::iterator I =
index 447be0c5e1ef75a054b1c8824d2be724afd83ab8..33cd2a5c3ce7efefec081d8fc3a7e9a358b667e8 100644 (file)
@@ -575,7 +575,7 @@ namespace llvm {
 
   //===--------------------------------------------------------------------===//
   /// SCEVUnknown - This means that we are dealing with an entirely unknown SCEV
-  /// value, and only represent it as it's LLVM Value.  This is the "bottom"
+  /// value, and only represent it as its LLVM Value.  This is the "bottom"
   /// value for the analysis.
   ///
   class SCEVUnknown : public SCEV {
index 1c914d6777590b2f5fe0742e10b6fbddcb5117f2..7a645040757d052e290b576e04361ad46e3460b8 100644 (file)
@@ -155,7 +155,7 @@ private:   // Intermediate data structures
   MachineInstr *FindLastPartialDef(unsigned Reg, unsigned &PartDefReg);
 
   /// hasRegisterUseBelow - Return true if the specified register is used after
-  /// the current instruction and before it's next definition.
+  /// the current instruction and before its next definition.
   bool hasRegisterUseBelow(unsigned Reg, MachineBasicBlock::iterator I,
                            MachineBasicBlock *MBB);
 
index 7240cb94ff98df654ac7c1e1339bce856b4b074a..54f1da96cad67ed4768eccb3c6445cc66e101a68 100644 (file)
@@ -27,7 +27,7 @@ class TimerGroup;
 class raw_ostream;
 
 /// Timer - This class is used to track the amount of time spent between
-/// invocations of it's startTimer()/stopTimer() methods.  Given appropriate OS
+/// invocations of its startTimer()/stopTimer() methods.  Given appropriate OS
 /// support it can also keep track of the RSS of the program at various points.
 /// By default, the Timer will print the amount of time it has captured to
 /// standard error when the laster timer is destroyed, otherwise it is printed
index b3f566a3c310653384bb87c0aaa42837d2b30ca9..dcc09921d9943d9aa0ba0f43ba7e8bc54b7332f0 100644 (file)
@@ -60,7 +60,7 @@ def NoItinerary : InstrItinClass;
 
 //===----------------------------------------------------------------------===//
 // Instruction itinerary data - These values provide a runtime map of an 
-// instruction itinerary class (name) to it's itinerary data.
+// instruction itinerary class (name) to its itinerary data.
 //
 class InstrItinData<InstrItinClass Class, list<InstrStage> stages,
                     list<int> operandcycles = []> {