aboutsummaryrefslogtreecommitdiff
path: root/libsanitizer
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2013-05-07 14:17:50 +0000
committerChristophe Lyon <clyon@gcc.gnu.org>2013-05-07 16:17:50 +0200
commit8a5800b82f04303c1a6ed9094885ba79dfc4378a (patch)
treef49b90d6259dbe7cbb55464ba1121033590c72c4 /libsanitizer
parent7bf55a70ea2a606b387b8c8012dea8caa1f1502d (diff)
downloadgcc-8a5800b82f04303c1a6ed9094885ba79dfc4378a.zip
gcc-8a5800b82f04303c1a6ed9094885ba79dfc4378a.tar.gz
gcc-8a5800b82f04303c1a6ed9094885ba79dfc4378a.tar.bz2
arm.c (arm_asan_shadow_offset): New function.
2013-05-06 Christophe Lyon <christophe.lyon@linaro.org> gcc/ * config/arm/arm.c (arm_asan_shadow_offset): New function. (TARGET_ASAN_SHADOW_OFFSET): Define. * config/arm/linux-eabi.h (ASAN_CC1_SPEC): Define. (LINUX_OR_ANDROID_CC): Add ASAN_CC1_SPEC. libsanitizer/ * configure.tgt: Add ARM pattern. testsuite/ * lib/target-supports.exp (check_effective_target_hw): New function. * c-c++-common/asan/clone-test-1.c: Call check_effective_target_hw. * c-c++-common/asan/rlimit-mmap-test-1.c: Likewise. * c-c++-common/asan/heap-overflow-1.c: Update regexps to accept possible decorations. * c-c++-common/asan/null-deref-1.c: Likewise. * c-c++-common/asan/stack-overflow-1.c: Likewise. * c-c++-common/asan/strncpy-overflow-1.c: Likewise. * c-c++-common/asan/use-after-free-1.c: Likewise. * g++.dg/asan/deep-thread-stack-1.C: Likewise. * g++.dg/asan/large-func-test-1.C: Likewise. From-SVN: r198683
Diffstat (limited to 'libsanitizer')
-rw-r--r--libsanitizer/ChangeLog4
-rw-r--r--libsanitizer/configure.tgt2
2 files changed, 6 insertions, 0 deletions
diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog
index 6d8d8af..8cc31a3 100644
--- a/libsanitizer/ChangeLog
+++ b/libsanitizer/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-07 Christophe Lyon <christophe.lyon@linaro.org>
+
+ * configure.tgt: Add ARM pattern.
+
2013-03-22 Jakub Jelinek <jakub@redhat.com>
PR other/43620
diff --git a/libsanitizer/configure.tgt b/libsanitizer/configure.tgt
index 265da01..bdfc22e 100644
--- a/libsanitizer/configure.tgt
+++ b/libsanitizer/configure.tgt
@@ -29,6 +29,8 @@ case "${target}" in
;;
sparc*-*-linux*)
;;
+ arm*-*-linux*)
+ ;;
x86_64-*-darwin[1]* | i?86-*-darwin[1]*)
TSAN_SUPPORTED=no
;;