summaryrefslogtreecommitdiff
path: root/include/llvm/Target
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-05-05 21:40:41 +0000
committerEric Christopher <echristo@gmail.com>2014-05-05 21:40:41 +0000
commit9572a1c8c95cf9862f41bc6d32ead9dd0d324dfe (patch)
tree52d285851e10d074da374c71fe629cb1f9d365ef /include/llvm/Target
parenta75173cb9e33ae86648f3ca652e38777328b2be1 (diff)
downloadllvm-9572a1c8c95cf9862f41bc6d32ead9dd0d324dfe.tar.gz
llvm-9572a1c8c95cf9862f41bc6d32ead9dd0d324dfe.tar.bz2
llvm-9572a1c8c95cf9862f41bc6d32ead9dd0d324dfe.tar.xz
Fix typo (also tab character).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208001 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r--include/llvm/Target/TargetLowering.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h
index d332c2d366..99adf231b5 100644
--- a/include/llvm/Target/TargetLowering.h
+++ b/include/llvm/Target/TargetLowering.h
@@ -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