File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
llvm/lib/Transforms/Instrumentation Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5385,6 +5385,8 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
53855385 break ;
53865386 }
53875387
5388+ // Convert Packed Double Precision Floating-Point Values
5389+ // to Packed Single PrecisionFloating-Point Values
53885390 case Intrinsic::x86_sse2_cvtpd2ps:
53895391 case Intrinsic::x86_sse2_cvtps2dq:
53905392 case Intrinsic::x86_sse2_cvtpd2dq:
@@ -5399,6 +5401,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
53995401 break ;
54005402 }
54015403
5404+ // Shift Packed Data (Left Logical, Right Arithmetic, Right Logical)
54025405 case Intrinsic::x86_avx512_psll_w_512:
54035406 case Intrinsic::x86_avx512_psll_d_512:
54045407 case Intrinsic::x86_avx512_psll_q_512:
@@ -5966,7 +5969,7 @@ struct MemorySanitizerVisitor : public InstVisitor<MemorySanitizerVisitor> {
59665969 break ;
59675970
59685971 // Convert Packed Single Precision Floating-Point Values
5969- // to Packed SignedDoubleword Integer Values
5972+ // to Packed Signed Doubleword Integer Values
59705973 //
59715974 // <16 x i32> @llvm.x86.avx512.mask.cvtps2dq.512
59725975 // (<16 x float>, <16 x i32>, i16, i32)
You can’t perform that action at this time.
0 commit comments