From 41cbabf98a32ea1513f685a7c87d7f44c2e1b88d Mon Sep 17 00:00:00 2001 From: Fei Peng Date: Mon, 12 Feb 2018 23:42:34 -0800 Subject: [PATCH] Fix an incorrect assertion in containment analysis --- src/jit/lowerxarch.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/jit/lowerxarch.cpp b/src/jit/lowerxarch.cpp index 0c2f2a2..315ca83 100644 --- a/src/jit/lowerxarch.cpp +++ b/src/jit/lowerxarch.cpp @@ -2353,10 +2353,6 @@ bool Lowering::IsContainableHWIntrinsicOp(GenTreeHWIntrinsic* containingNode, Ge return false; } - // For containable nodes, the base type of the original node and the base type of the contained node - // should be the same. This helps ensure we aren't reading too many or too few bits. - assert(!isContainable || (containingNode->gtSIMDBaseType == node->AsHWIntrinsic()->gtSIMDBaseType)); - return isContainable; } -- 2.7.4