[llvm-commits] [llvm] r42786 - /llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp

Dan Gohman djg at cray.com
Tue Oct 9 08:44:37 PDT 2007


Author: djg
Date: Tue Oct  9 10:44:37 2007
New Revision: 42786

URL: http://llvm.org/viewvc/llvm-project?rev=42786&view=rev
Log:
Fix grammar in a comment.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp?rev=42786&r1=42785&r2=42786&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelDAGToDAG.cpp Tue Oct  9 10:44:37 2007
@@ -1090,9 +1090,9 @@
       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);





More information about the llvm-commits mailing list