Do not use `dyn_cast<X>` after `isa<X>` (NFC)
authorMehdi Amini <mehdi.amini@apple.com>
Wed, 21 Oct 2015 06:11:01 +0000 (06:11 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Wed, 21 Oct 2015 06:11:01 +0000 (06:11 +0000)
From: Mehdi Amini <mehdi.amini@apple.com>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250883 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelDAGToDAG.cpp

index 8e8698ed932edaf29674ce62f052efb3f0915ad8..4aaee046d23ecf205a936fa47a18fcd307d02bd7 100644 (file)
@@ -1428,7 +1428,7 @@ bool X86DAGToDAGISel::selectVectorAddr(SDNode *Parent, SDValue N, SDValue &Base,
 
   // If Base is 0, the whole address is in index and the Scale is 1
   if (isa<ConstantSDNode>(Base)) {
-    assert(dyn_cast<ConstantSDNode>(Base)->isNullValue() &&
+    assert(cast<ConstantSDNode>(Base)->isNullValue() &&
            "Unexpected base in gather/scatter");
     Scale = getI8Imm(1, DL);
     Base = CurDAG->getRegister(0, MVT::i32);