forked from OSchip/llvm-project
Move setBugReportMsg() out from under a conditional
Fixes a build break with LLVM_ENABLE_BACKTRACES=OFF. Differential Revision: https://reviews.llvm.org/D76893
This commit is contained in:
parent
d26e0bcfba
commit
5d929e6646
|
@ -146,8 +146,6 @@ static const char *BugReportMsg =
|
|||
"PLEASE submit a bug report to " BUG_REPORT_URL
|
||||
" and include the crash backtrace.\n";
|
||||
|
||||
void llvm::setBugReportMsg(const char *Msg) { BugReportMsg = Msg; }
|
||||
|
||||
/// This callback is run if a fatal signal is delivered to the process, it
|
||||
/// prints the pretty stack trace.
|
||||
static void CrashHandler(void *) {
|
||||
|
@ -204,6 +202,12 @@ static void printForSigInfoIfNeeded() {
|
|||
|
||||
#endif // ENABLE_BACKTRACES
|
||||
|
||||
void llvm::setBugReportMsg(const char *Msg) {
|
||||
#if ENABLE_BACKTRACES
|
||||
BugReportMsg = Msg;
|
||||
#endif
|
||||
}
|
||||
|
||||
PrettyStackTraceEntry::PrettyStackTraceEntry() {
|
||||
#if ENABLE_BACKTRACES
|
||||
// Handle SIGINFO first, because we haven't finished constructing yet.
|
||||
|
|
Loading…
Reference in New Issue