Remove a couple of asserts, which are no longer valid, from getMaxVectorTByteLength...
authorTanner Gooding <tagoo@outlook.com>
Wed, 14 Jun 2023 22:30:12 +0000 (15:30 -0700)
committerGitHub <noreply@github.com>
Wed, 14 Jun 2023 22:30:12 +0000 (15:30 -0700)
src/coreclr/jit/compiler.h

index 049b630bca199a052ad55c7959de37a96e1ef241..753f484466aa7ed7de5975467050084d61d1a1cf 100644 (file)
@@ -8722,7 +8722,6 @@ private:
             // TODO: We should be returning 0 here, but there are a number of
             // places that don't quite get handled correctly in that scenario
 
-            assert((JitConfig.EnableHWIntrinsic() == 0) || (JitConfig.EnableSSE() == 0));
             return XMM_REGSIZE_BYTES;
         }
 #elif defined(TARGET_ARM64)
@@ -8735,7 +8734,6 @@ private:
             // TODO: We should be returning 0 here, but there are a number of
             // places that don't quite get handled correctly in that scenario
 
-            assert((JitConfig.EnableHWIntrinsic() == 0) || (JitConfig.EnableArm64AdvSimd() == 0));
             return FP_REGSIZE_BYTES;
         }
 #else