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:
Leonard Chan 2020-03-26 16:39:03 -07:00
parent d26e0bcfba
commit 5d929e6646
1 changed files with 6 additions and 2 deletions

View File

@ -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.