[llvm] r249571 - Test commit access. Fixed comment to have correct input parameter name and

Kevin B. Smith via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 7 10:24:25 PDT 2015


Author: kbsmith1
Date: Wed Oct  7 12:24:25 2015
New Revision: 249571

URL: http://llvm.org/viewvc/llvm-project?rev=249571&view=rev
Log:
Test commit access. Fixed comment to have correct input parameter name and
period termination.

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

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=249571&r1=249570&r2=249571&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Wed Oct  7 12:24:25 2015
@@ -4229,7 +4229,7 @@ unsigned X86::getInsertVINSERT256Immedia
   return getInsertVINSERTImmediate(N, 256);
 }
 
-/// Returns true if Elt is a constant integer zero
+/// Returns true if V is a constant integer zero.
 static bool isZero(SDValue V) {
   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
   return C && C->isNullValue();




More information about the llvm-commits mailing list