Erik Faye-Lund schrieb: > On Mon, Sep 14, 2009 at 3:09 PM, Johannes Sixt <j.sixt@xxxxxxxxxxxxx> wrote: >> Erik Faye-Lund schrieb: >>> Compiling the following code gives a warning about unreachable code, >>> so it's clear that msvc doesn't simply ignore the directive. I'm not >>> saying that anyone suggested otherwise, I just wanted to know for >>> sure. >>> >>> #include <stdio.h> >>> #include <stdlib.h> >>> void (*exit_fun)(int) = exit; >>> void __declspec(noreturn) die(void); >>> void die(void) { exit_fun(1); } >>> int main(void) { printf("hello!\n"); die(); printf("world!\n"); } >> In order to countermand any clever optimizations you should make it >> >> -void (*exit_fun)(int) = exit; >> +extern void (*exit_fun)(int); >> >> (of course, this fails to link). But if this results in only *one* warning >> (that the printf() call is unreachable), then I wouldn't bother with this >> problem anymore, because you really should also have been warned that a >> __declspec(noreturn) function actually does return. > > Ah, good point. Still gives the warning (as well as the linker-error), though. "The" warning? Not "the two" warnings? Then I suggest to stop here; MSVC is only half-competent with regards to noreturn. -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html