diff options
author | Colin LeMahieu <colinl@codeaurora.org> | 2015-01-28 17:06:40 +0000 |
---|---|---|
committer | Colin LeMahieu <colinl@codeaurora.org> | 2015-01-28 17:06:40 +0000 |
commit | fdbc5adbb60845f632131b9bbda155c97dc07f3a (patch) | |
tree | bef7cdf87ac1799cd7dd538484549f38a600f574 /llvm/lib/Support/Windows | |
parent | c17902b89b52c926629625da4e54eaa72a3a681f (diff) | |
download | bcm5719-llvm-fdbc5adbb60845f632131b9bbda155c97dc07f3a.tar.gz bcm5719-llvm-fdbc5adbb60845f632131b9bbda155c97dc07f3a.zip |
[Hexagon] Replacing intrinsics for halfword adds and max/min word/dword.
llvm-svn: 227322
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/Signals.inc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index ad740c79a7a..35ba6f8e1bb 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -279,14 +279,6 @@ void sys::DontRemoveFileOnSignal(StringRef Filename) { /// PrintStackTraceOnErrorSignal - When an error signal (such as SIBABRT or /// SIGSEGV) is delivered to the process, print a stack trace and then exit. void sys::PrintStackTraceOnErrorSignal() { - // Don't pop up any dialog boxes. - // We're already handling writing a "something went wrong" message. - _set_abort_behavior(0, _WRITE_ABORT_MSG); - // Disable Dr. Watson. - _set_abort_behavior(0, _CALL_REPORTFAULT); - // Disable standard error dialog box. - SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOGPFAULTERRORBOX); - RegisterHandler(); LeaveCriticalSection(&CriticalSection); } |