Move setBugReportMsg() out from under a conditional
authorLeonard Chan <leonardchan@google.com>
Thu, 26 Mar 2020 23:39:03 +0000 (16:39 -0700)
committerLeonard Chan <leonardchan@google.com>
Thu, 26 Mar 2020 23:39:03 +0000 (16:39 -0700)
Fixes a build break with LLVM_ENABLE_BACKTRACES=OFF.

Differential Revision: https://reviews.llvm.org/D76893

llvm/lib/Support/PrettyStackTrace.cpp

index e1b834f..3d310ed 100644 (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.