diff options
author | Dan Gohman <gohman@apple.com> | 2007-10-09 15:44:37 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-10-09 15:44:37 +0000 |
commit | 74f87a63b6f5ea3325641b531bbe8d104d23e796 (patch) | |
tree | 7ed1acbd70dbc9d7b1d9ea1797b9786563c7ab52 | |
parent | 5bf88ebab96516de20ec6abfad46a8ef7e6d0d76 (diff) |
Fix grammar in a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42786 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86ISelDAGToDAG.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp index 6c741768d8..c6d3e6cdd7 100644 --- a/lib/Target/X86/X86ISelDAGToDAG.cpp +++ b/lib/Target/X86/X86ISelDAGToDAG.cpp @@ -1090,9 +1090,9 @@ SDNode *X86DAGToDAGISel::Select(SDOperand N) { SDOperand N0 = Node->getOperand(0); SDOperand N1 = Node->getOperand(1); - // There are several forms of IMUL just return the low part and don't - // have fixed-register operands. If we don't need the high part, use - // these instead. They can be selected with the generated ISel code. + // There are several forms of IMUL that just return the low part and + // don't have fixed-register operands. If we don't need the high part, + // use these instead. They can be selected with the generated ISel code. if (NVT != MVT::i8 && N.getValue(1).use_empty()) { N = CurDAG->getNode(ISD::MUL, NVT, N0, N1); |