[llvm] r208001 - Fix typo (also tab character).

Eric Christopher echristo at gmail.com
Mon May 5 14:40:41 PDT 2014


Author: echristo
Date: Mon May  5 16:40:41 2014
New Revision: 208001

URL: http://llvm.org/viewvc/llvm-project?rev=208001&view=rev
Log:
Fix typo (also tab character).

Modified:
    llvm/trunk/include/llvm/Target/TargetLowering.h

Modified: llvm/trunk/include/llvm/Target/TargetLowering.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetLowering.h?rev=208001&r1=208000&r2=208001&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetLowering.h (original)
+++ llvm/trunk/include/llvm/Target/TargetLowering.h Mon May  5 16:40:41 2014
@@ -2020,7 +2020,7 @@ public:
   /// Return true if it is profitable to move a following shift through this
   //  node, adjusting any immediate operands as necessary to preserve semantics.
   //  This transformation may not be desirable if it disrupts a particularly
-  //  auspicious target-specific tree (e.g. bitfield extractionon in AArch64).
+  //  auspicious target-specific tree (e.g. bitfield extraction in AArch64).
   //  By default, it returns true.
   virtual bool isDesirableToCommuteWithShift(const SDNode *N /*Op*/) const {
     return true;
@@ -2448,8 +2448,8 @@ public:
   /// \returns true if the node has been expanded. false if it has not
   bool expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT,
                  SelectionDAG &DAG, SDValue LL = SDValue(),
-		 SDValue LH = SDValue(), SDValue RL = SDValue(),
-		 SDValue RH = SDValue()) const;
+                 SDValue LH = SDValue(), SDValue RL = SDValue(),
+                 SDValue RH = SDValue()) const;
 
   //===--------------------------------------------------------------------===//
   // Instruction Emitting Hooks





More information about the llvm-commits mailing list