mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-16 12:19:26 +00:00
28 lines
1.7 KiB
Diff
28 lines
1.7 KiB
Diff
Index: llvm-toolchain-snapshot_3.4~svn188990/lldb/source/Plugins/Process/Linux/LinuxSignals.cpp
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_3.4~svn188990.orig/lldb/source/Plugins/Process/Linux/LinuxSignals.cpp 2013-08-22 09:13:53.632598950 +0200
|
|
+++ llvm-toolchain-snapshot_3.4~svn188990/lldb/source/Plugins/Process/Linux/LinuxSignals.cpp 2013-08-22 09:13:53.624598950 +0200
|
|
@@ -45,7 +45,9 @@
|
|
ADDSIGNAL(PIPE, false, true, true, "write to pipe with reading end closed");
|
|
ADDSIGNAL(ALRM, false, false, true, "alarm");
|
|
ADDSIGNAL(TERM, false, true, true, "termination requested");
|
|
+#ifdef SIGSTKFLT
|
|
ADDSIGNAL(STKFLT, false, true, true, "stack fault");
|
|
+#endif
|
|
ADDSIGNAL(CHLD, false, false, true, "child process exit");
|
|
ADDSIGNAL(CONT, false, true, true, "process continue");
|
|
ADDSIGNAL(STOP, false, true, true, "process stop");
|
|
Index: llvm-toolchain-snapshot_3.4~svn188990/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
|
|
===================================================================
|
|
--- llvm-toolchain-snapshot_3.4~svn188990.orig/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp 2013-08-22 09:13:53.632598950 +0200
|
|
+++ llvm-toolchain-snapshot_3.4~svn188990/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp 2013-08-22 09:13:53.624598950 +0200
|
|
@@ -149,7 +149,7 @@
|
|
|
|
// TOOD: need a better way to detect when "long double" types are
|
|
// the same bytes size as "double"
|
|
-#if !defined(__arm__)
|
|
+#if !defined(__arm__) && !defined(__mips__)
|
|
case sizeof (long double):
|
|
if (sizeof (long double) == sizeof(uint32_t))
|
|
{
|