Fix typos:
authorSylvestre Ledru <sylvestre@debian.org>
Mon, 11 Aug 2014 18:04:46 +0000 (18:04 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Mon, 11 Aug 2014 18:04:46 +0000 (18:04 +0000)
* libaries => libraries
* avaiable => available

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215366 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CommandGuide/llvm-config.rst
lib/IR/LegacyPassManager.cpp
lib/Target/AArch64/AArch64FrameLowering.cpp
lib/Target/Mips/Mips16ISelLowering.cpp
lib/Target/Mips/MipsISelLowering.cpp
lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
lib/Target/R600/AMDILCFGStructurizer.cpp

index 0ebb344c06ad347b933f117c05f05ccbe8fdd53e..34075d0b3086eb794a1fdd925566ff125db15cae 100644 (file)
@@ -151,7 +151,7 @@ libraries.  Useful "virtual" components include:
 
 **all**
 
- Includes all LLVM libaries.  The default if no components are specified.
+ Includes all LLVM libraries.  The default if no components are specified.
 
 
 
index d3f3482dc02459c8dbeb488c5d09665be46bc81b..319915afd130e0e6c70d775beb08963e7b8d0f62 100644 (file)
@@ -1684,7 +1684,7 @@ void MPPassManager::addLowerLevelRequiredPass(Pass *P, Pass *RequiredPass) {
   if (!FoundPass) {
     FoundPass = RequiredPass;
     // This should be guaranteed to add RequiredPass to the passmanager given
-    // that we checked for an avaiable analysis above.
+    // that we checked for an available analysis above.
     FPP->add(RequiredPass);
   }
   // Register P as the last user of FoundPass or RequiredPass.
index 44903fcb381b55db9b84a340079666654cf8e667..f40744cd8fbb8595321a26cbeb1a78df6b8f79ea 100644 (file)
@@ -131,7 +131,7 @@ void AArch64FrameLowering::eliminateCallFramePseudoInstr(
       // FIXME: in-function stack adjustment for calls is limited to 24-bits
       // because there's no guaranteed temporary register available.
       //
-      // ADD/SUB (immediate) has only LSL #0 and LSL #12 avaiable.
+      // ADD/SUB (immediate) has only LSL #0 and LSL #12 available.
       // 1) For offset <= 12-bit, we use LSL #0
       // 2) For 12-bit <= offset <= 24-bit, we use two instructions. One uses
       // LSL #0, and the other uses LSL #12.
index 3ca0ffe23ebe6f8e666ae9b30c709e09430cea21..9c35c6136113d76bb01b34a1aebc6bbb7378e730 100644 (file)
@@ -27,7 +27,7 @@ using namespace llvm;
 static cl::opt<bool> DontExpandCondPseudos16(
   "mips16-dont-expand-cond-pseudo",
   cl::init(false),
-  cl::desc("Dont expand conditional move related "
+  cl::desc("Don't expand conditional move related "
            "pseudos for Mips 16"),
   cl::Hidden);
 
index 416de552b4abae7b033c7806c81d836a1313c521..368b1674b3f0ebca3a27ff40b7dbaf2d34cbb0de 100644 (file)
@@ -2274,7 +2274,7 @@ SDValue MipsTargetLowering::lowerFP_TO_SINT(SDValue Op,
 //       an argument. Otherwise, passed in A1, A2, A3 and stack.
 // f64 - Only passed in two aliased f32 registers if no int reg has been used
 //       yet to hold an argument. Otherwise, use A2, A3 and stack. If A1 is
-//       not used, it must be shadowed. If only A3 is avaiable, shadow it and
+//       not used, it must be shadowed. If only A3 is available, shadow it and
 //       go to stack.
 //
 //  For vararg functions, all arguments are passed in A0, A1, A2, A3 and stack.
index 05205fba1affdcc6ce1f0476d3455349486c8e63..042944fc77d01195000c4d04968dc96db492847f 100644 (file)
@@ -27,7 +27,7 @@ using namespace llvm;
 static cl::opt<int> UsePrecDivF32(
     "nvptx-prec-divf32", cl::ZeroOrMore, cl::Hidden,
     cl::desc("NVPTX Specifies: 0 use div.approx, 1 use div.full, 2 use"
-             " IEEE Compliant F32 div.rnd if avaiable."),
+             " IEEE Compliant F32 div.rnd if available."),
     cl::init(2));
 
 static cl::opt<bool>
index 647de66b633812a8d98ce88741803f2e1f165576..ee6e8ecfb29d7c5feefee75013ebee6c11eee6b1 100644 (file)
@@ -338,7 +338,7 @@ protected:
   void setLoopLandBlock(MachineLoop *LoopRep, MachineBasicBlock *MBB = nullptr);
 
   MachineBasicBlock *findNearestCommonPostDom(std::set<MachineBasicBlock *>&);
-  /// This is work around solution for findNearestCommonDominator not avaiable
+  /// This is work around solution for findNearestCommonDominator not available
   /// to post dom a proper fix should go to Dominators.h.
   MachineBasicBlock *findNearestCommonPostDom(MachineBasicBlock *MBB1,
       MachineBasicBlock *MBB2);