https://bugs.llvm.org/show_bug.cgi?id=33977

            Bug ID: 33977
           Summary: [X86][AVX512] _mm512_stream_load_si512 should take a
                    const void* argument
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: Headers
          Assignee: unassignedclangb...@nondot.org
          Reporter: llvm-...@redking.me.uk
                CC: elena.demikhov...@intel.com, llvm-bugs@lists.llvm.org,
                    zvi.racko...@intel.com

avx512fintrin.h:

_mm512_stream_load_si512 is defined as:

  _mm512_stream_load_si512 (void *__P)

when it should be:

  _mm512_stream_load_si512 (void const *__P)

This would match the intel docs and prevent const warnings when loading from
const pointers

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to