]> granicus.if.org Git - llvm/commitdiff
Fix spelling mistake - paramater -> parameter. NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 15 Feb 2017 15:11:36 +0000 (15:11 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 15 Feb 2017 15:11:36 +0000 (15:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295182 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/Allocator.h
include/llvm/Target/TargetLowering.h

index c71759abd7d211219c39a61f33d2c57ca96a71cf..6a65f61fbfa8a92486591733106ddef8b009c534 100644 (file)
@@ -357,7 +357,7 @@ private:
 };
 
 /// \brief The standard BumpPtrAllocator which just uses the default template
-/// paramaters.
+/// parameters.
 typedef BumpPtrAllocatorImpl<> BumpPtrAllocator;
 
 /// \brief A BumpPtrAllocator that allows only elements of a specific type to be
index 68696763fcabe07de539e6942755a1625c990138..204d8807a68fef0ac832c2290d93938bd947e74b 100644 (file)
@@ -2362,11 +2362,11 @@ public:
   /// expression and return a mask of KnownOne and KnownZero bits for the
   /// expression (used to simplify the caller).  The KnownZero/One bits may only
   /// be accurate for those bits in the DemandedMask.
-  /// \p AssumeSingleUse When this paramater is true, this function will
+  /// \p AssumeSingleUse When this parameter is true, this function will
   ///    attempt to simplify \p Op even if there are multiple uses.
   ///    Callers are responsible for correctly updating the DAG based on the
   ///    results of this function, because simply replacing replacing TLO.Old
-  ///    with TLO.New will be incorrect when this paramater is true and TLO.Old
+  ///    with TLO.New will be incorrect when this parameter is true and TLO.Old
   ///    has multiple uses.
   bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedMask,
                             APInt &KnownZero, APInt &KnownOne,