Module Name: src Committed By: christos Date: Thu Oct 23 17:50:24 UTC 2014
Modified Files: src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common: sanitizer_netbsd.cc Log Message: use the appropriate unwind.h header To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 \ src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc diff -u src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc:1.2 src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc:1.3 --- src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc:1.2 Wed Oct 22 12:29:47 2014 +++ src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/sanitizer_netbsd.cc Thu Oct 23 13:50:24 2014 @@ -29,7 +29,6 @@ #include <sys/time.h> #include <sys/types.h> #include <unistd.h> -#include <unwind.h> #include <errno.h> namespace __sanitizer { @@ -392,9 +391,11 @@ bool SanitizerGetThreadName(char *name, #ifndef SANITIZER_GO //------------------------- SlowUnwindStack ----------------------------------- #ifdef __arm__ +#include "unwind-arm-common.h" #define UNWIND_STOP _URC_END_OF_STACK #define UNWIND_CONTINUE _URC_NO_REASON #else +#include <unwind.h> #define UNWIND_STOP _URC_NORMAL_STOP #define UNWIND_CONTINUE _URC_NO_REASON #endif