diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-06 03:01:43 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-09-06 03:01:43 +0000 |
commit | 8a54d812c55d51239c7a8c0cea710f498f998e57 (patch) | |
tree | 8cc2c63ca21cf53b6acfddcab9d7f043c89b6db5 /llvm/lib/Support/Unix | |
parent | 0744143370daa3887088ecd64223a4ed8aab3536 (diff) | |
download | bcm5719-llvm-8a54d812c55d51239c7a8c0cea710f498f998e57.tar.gz bcm5719-llvm-8a54d812c55d51239c7a8c0cea710f498f998e57.zip |
Unix/Signals.inc: Fix a typo. Thanks to Dani Berg!
llvm-svn: 163288
Diffstat (limited to 'llvm/lib/Support/Unix')
-rw-r--r-- | llvm/lib/Support/Unix/Signals.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Unix/Signals.inc b/llvm/lib/Support/Unix/Signals.inc index 519511685dd..aac0408ce76 100644 --- a/llvm/lib/Support/Unix/Signals.inc +++ b/llvm/lib/Support/Unix/Signals.inc @@ -293,7 +293,7 @@ static void PrintStackTrace(void *) { #endif } -/// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or +/// PrintStackTraceOnErrorSignal - When an error signal (such as SIGABRT or /// SIGSEGV) is delivered to the process, print a stack trace and then exit. void llvm::sys::PrintStackTraceOnErrorSignal() { AddSignalHandler(PrintStackTrace, 0); |