On 25 August 2011 01:41, Jordy Rose <jediknil at belkadan.com> wrote: > + llvm_unreachable("Invalid/unknown GC mode."); > + return false; llvm_unreachable() expands to either __builtin_unreachable() or a call to a noreturn function. Either way, there should be no need for the explicit return.