<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED NOTOURBUG - 'identifier "L__FUNCTION__" is undefined' error for Debug builds using ICC on Windows"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=100693#c5">Comment # 5</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED NOTOURBUG - 'identifier "L__FUNCTION__" is undefined' error for Debug builds using ICC on Windows"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=100693">bug 100693</a>
              from <span class="vcard"><a class="email" href="mailto:Hi-Angel@yandex.ru" title="Hi-Angel <Hi-Angel@yandex.ru>"> <span class="fn">Hi-Angel</span></a>
</span></b>
        <pre>(In reply to sav_ix from <a href="show_bug.cgi?id=100693#c4">comment #4</a>)
<span class="quote">> (ICC) ir.h(2254): warning #873: function "exec_node::operator new" has no
> corresponding operator delete (to be called if an exception is thrown during
> initialization of an allocated object)
>         return new(mem_ctx) ir_emit_vertex(this->stream->clone(mem_ctx, ht));
>                ^
> (MSVC) ir.h(2254): warning C4291: 'void *exec_node::operator
> new(std::size_t,void *)': no matching operator delete found; memory will not
> be freed if initialization throws an exception</span >

The warnings are for the same line, and might be worth some attention if anyone
interested (I looked very cursory at it tho).

<span class="quote">> (ICC) build\windows-x86_64\gallium\auxiliary\indices\u_indices_gen.c(71):
> warning #592: variable "j" is used before its value is set
>     (void)j;
>           ^</span >

This is a funny one. I googled up that such a cast is used to make a compiler
to not show a warning about a unused variable, and it's funny that for ICC it
turned up into another one.

That said, I've no idea who need those unused variables in the file, they
probably worth deleting. It's a trivial cleanup, if nobody wants to do
something to them, I'll send a patch at the weekend.

<span class="quote">> (ICC) src\mesa\main\shaderobj.h(181): warning #1011: missing return ></span >
statement at end of non-void function >
"_mesa_shader_stage_from_subroutine_uniform"

This one is false-positive, the function uses a macro "unreachable()" there,
which is defined through built-ins either α) if a compiler has
__builtin_unreachable, or β) through __assume() if a compiler is MSVC, or γ)
just an assert() otherwise. __builtin_unreachable is tested first, and acc. to
google ICC has the function, so it's an ICC flaw (I understand though that as
you said it imitates MSVC on Windows, but I don't see anyway why would they
need to disable the function).

<span class="quote">> which could be a flaws in MESA sources and

> (ICC) icl: command line warning #10381: option '/Qstd=c11' is not valid for
> C++ compilations

> (GCC) cc1plus.exe: warning: command line option '-std=gnu11' is valid for
> C/ObjC but not for C++</span >

Unless there're compilation errors, these are harmless, but if anyone wanted to
send a fix, could be a nice cleanup.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>