Guard the definition of the stack tracing function with the same macros
authorChandler Carruth <chandlerc@gmail.com>
Sat, 11 Oct 2014 01:04:40 +0000 (01:04 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sat, 11 Oct 2014 01:04:40 +0000 (01:04 +0000)
that guard its usage. Without this, we can get unused function warnings
when backtraces are disabled.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@219558 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Unix/Signals.inc

index a19cc61c3c120a9a5865dde23127d2746f129c61..39cf662c13594125ccdd73e870e7cfe475dc0171 100644 (file)
@@ -322,6 +322,7 @@ static bool findModulesAndOffsets(void **StackTrace, int Depth,
 }
 #endif
 
+#if defined(HAVE_BACKTRACE) && defined(ENABLE_BACKTRACES)
 static bool printSymbolizedStackTrace(void **StackTrace, int Depth, FILE *FD) {
   // FIXME: Subtract necessary number from StackTrace entries to turn return addresses
   // into actual instruction addresses.
@@ -406,6 +407,7 @@ static bool printSymbolizedStackTrace(void **StackTrace, int Depth, FILE *FD) {
   }
   return true;
 }
+#endif
 
 // PrintStackTrace - In the case of a program crash or fault, print out a stack
 // trace so that the user has an indication of why and where we died.