diff --git a/lib/Target/X86/X86JITInfo.cpp b/lib/Target/X86/X86JITInfo.cpp index 77bf0536947..4766e1f3334 100644 --- a/lib/Target/X86/X86JITInfo.cpp +++ b/lib/Target/X86/X86JITInfo.cpp @@ -69,12 +69,11 @@ extern "C" { ret } } -#endif +#endif // _MSC_VER -#else - // Not an i386 host +#else // Not an i386 host void X86CompilationCallback() { - assert(0 && "This is not a X86, you can't execute this!"); + std::cerr << "Cannot call X86CompilationCallback() on a non-x86 arch!\n"; abort(); } #endif