diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-11-08 09:45:06 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2015-11-08 09:45:06 +0000 |
commit | 02d97aa74e78c288a0ea9d5eb590b2c7f0e44770 (patch) | |
tree | 6163d9add4c26c48c165304361fff0a62951d1a2 /llvm/lib/Support | |
parent | f046f72efa55cd7b2f6bfd591b9b0d65ed3a3cc6 (diff) | |
download | bcm5719-llvm-02d97aa74e78c288a0ea9d5eb590b2c7f0e44770.tar.gz bcm5719-llvm-02d97aa74e78c288a0ea9d5eb590b2c7f0e44770.zip |
Appease hosts without HAVE_BACKTRACE nor ENABLE_BACKTRACES.
llvm/lib/Support/Signals.cpp:66:13: warning: unused function 'printSymbolizedStackTrace' [-Wunused-function]
llvm/lib/Support/Signals.cpp:52:13: warning: function 'findModulesAndOffsets' has internal linkage but is not defined [-Wundefined-internal]
llvm-svn: 252418
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/Signals.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/Support/Unix/Signals.inc | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/llvm/lib/Support/Signals.cpp b/llvm/lib/Support/Signals.cpp index 0348c9f6651..3dc6b7c99d0 100644 --- a/llvm/lib/Support/Signals.cpp +++ b/llvm/lib/Support/Signals.cpp @@ -62,6 +62,10 @@ static FormattedNumber format_ptr(void *PC) { return format_hex((uint64_t)PC, PtrWidth); } +static bool printSymbolizedStackTrace(void **StackTrace, int Depth, + llvm::raw_ostream &OS) + LLVM_ATTRIBUTE_USED; + /// Helper that launches llvm-symbolizer and symbolizes a backtrace. static bool printSymbolizedStackTrace(void **StackTrace, int Depth, llvm::raw_ostream &OS) { diff --git a/llvm/lib/Support/Unix/Signals.inc b/llvm/lib/Support/Unix/Signals.inc index fb1b400ba2f..d6d30bf0cb3 100644 --- a/llvm/lib/Support/Unix/Signals.inc +++ b/llvm/lib/Support/Unix/Signals.inc @@ -306,6 +306,13 @@ static bool findModulesAndOffsets(void **StackTrace, int Depth, return false; } #endif +#else +static bool findModulesAndOffsets(void **StackTrace, int Depth, + const char **Modules, intptr_t *Offsets, + const char *MainExecutableName, + StringSaver &StrPool) { + return false; +} #endif // defined(HAVE_BACKTRACE) && defined(ENABLE_BACKTRACES) // PrintStackTrace - In the case of a program crash or fault, print out a stack |