From: Alp Toker Date: Tue, 22 Oct 2013 12:30:55 +0000 (+0000) Subject: Fix the -Werror -Wpedantic clang selfhost build X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=16da44c56235d4aa12c001d94f87ca1dd8e30837;p=oota-llvm.git Fix the -Werror -Wpedantic clang selfhost build This is a stopgap fix for cast warnings introduced in r192864. A proper fix should be investigated by the author when possible. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193160 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/ErrorHandling.cpp b/lib/Support/ErrorHandling.cpp index a0b7619cd2b..1eafb96fde0 100644 --- a/lib/Support/ErrorHandling.cpp +++ b/lib/Support/ErrorHandling.cpp @@ -107,13 +107,13 @@ void llvm::llvm_unreachable_internal(const char *msg, const char *file, static void bindingsErrorHandler(void *user_data, const std::string& reason, bool gen_crash_diag) { LLVMFatalErrorHandler handler = - reinterpret_cast(user_data); + LLVM_EXTENSION reinterpret_cast(user_data); handler(reason.c_str()); } void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler) { - install_fatal_error_handler( - bindingsErrorHandler, reinterpret_cast(Handler)); + install_fatal_error_handler(bindingsErrorHandler, + LLVM_EXTENSION reinterpret_cast(Handler)); } void LLVMResetFatalErrorHandler() {