diff options
author | Kevin B. Smith <kevin.b.smith@intel.com> | 2015-10-07 17:24:25 +0000 |
---|---|---|
committer | Kevin B. Smith <kevin.b.smith@intel.com> | 2015-10-07 17:24:25 +0000 |
commit | 9c7408807f116e2052ec7b81b0747647a08e242e (patch) | |
tree | 1dcb8ac5eb757227d44f8fe1e25a9629bb5db296 /llvm/lib | |
parent | 804f981fd07e359d61cfb3d721d8913aed65713b (diff) | |
download | bcm5719-llvm-9c7408807f116e2052ec7b81b0747647a08e242e.tar.gz bcm5719-llvm-9c7408807f116e2052ec7b81b0747647a08e242e.zip |
Test commit access. Fixed comment to have correct input parameter name and
period termination.
llvm-svn: 249571
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/X86/X86ISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index c3d3354c47c..c9c57e43563 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/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<ConstantSDNode>(V); return C && C->isNullValue(); |