--- deliantra/server/include/compiler.h 2010/05/02 11:32:14 1.7 +++ deliantra/server/include/compiler.h 2011/01/31 16:33:45 1.9 @@ -49,7 +49,7 @@ # define decltype(x) typeof(x) #endif -#if GCC_VERSION(4,5) && 0 // the #else part is generating better code on 4.5 +#if GCC_VERSION(4,5) # define unreachable() __builtin_unreachable () #else // this seems to work fine, but gcc always emits a warning for it :/ @@ -63,7 +63,7 @@ #define expect_false(expr) expect ((expr) ? 1 : 0, 0) #define expect_true(expr) expect ((expr) ? 1 : 0, 1) -// try to tell the compiler tat some condition is definitely true +// try to tell the compiler that some condition is definitely true #define assume(cond) do { if (!(cond)) unreachable (); } while (0) #endif