From: Kevin B. Smith Date: Wed, 7 Oct 2015 17:24:25 +0000 (+0000) Subject: Test commit access. Fixed comment to have correct input parameter name and X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fc2e5ea5d91819f4ccaf3d23f2379ee9ee24ad41;p=oota-llvm.git Test commit access. Fixed comment to have correct input parameter name and period termination. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@249571 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index c3d3354c47c..c9c57e43563 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -4229,7 +4229,7 @@ unsigned X86::getInsertVINSERT256Immediate(SDNode *N) { 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(V); return C && C->isNullValue();