]> git.ipfire.org Git - thirdparty/gcc.git/blame - libsanitizer/ChangeLog
re PR middle-end/55430 (LRA miscompilation of ree.c)
[thirdparty/gcc.git] / libsanitizer / ChangeLog
CommitLineData
64548f3b
JJ
12012-11-23 Jakub Jelinek <jakub@redhat.com>
2
3 * tsan/Makefile.am (AM_CXXFLAGS): Remove -Wno-variadic-macros.
4 * Makefile.am (SUBDIRS): Guard tsan addition with TSAN_SUPPORTED
5 automake conditional instead of !MULTISUBDIR32.
6 * configure.tgt: Set TSAN_SUPPORTED=yes for x86_64/i686-linux
7 for 64-bit multilib.
8 * configure.ac: Check for void * size, source in configure.tgt,
9 define TSAN_SUPPORTED conditional instead of MULTILIBDIR32.
10 * configure: Regenerated.
11 * Makefile.in: Regenerated.
12 * tsan/Makefile.in: Regenerated.
13
cd0be65c
WM
142012-11-22 Wei Mi <wmi@google.com>
15
16 * tsan: New directory. Import tsan runtime from llvm.
17 * configure.ac: Add 64 bits tsan build.
18 * Makefile.am: Likewise.
19 * configure: Regenerated.
20 * Makefile.in: Likewise.
21
5cba83a8
KS
222012-11-21 Kostya Serebryany <kcc@google.com>
23
24 * README.gcc: Extend the README.gcc with mode details.
25
b014e124
KS
262012-11-20 Konstantin Serebryany <konstantin.s.serebryany@gmail.com>
27
28 * sanitizer_common/sanitizer_linux.cc
29 (SANITIZER_LINUX_USES_64BIT_SYSCALLS): Define.
30 (internal_mmap): Use it.
31 (internal_filesize): Likewise.
32
2b723e21
TT
332012-11-16 Tom Tromey <tromey@redhat.com>
34
35 * configure.ac: Invoke AM_MAINTAINER_MODE.
36 * aclocal.m4, configure, Makefile.in, asan/Makefile.in,
37 interception/Makefile.in, sanitizer_common/Makefile.in: Rebuild.
38
d1caed14
L
392012-11-16 H.J. Lu <hongjiu.lu@intel.com>
40
41 PR other/55333
42 * include/sanitizer/common_interface_defs.h (uhwptr): New type
43 for hardware pointer.
44 * sanitizer_common/sanitizer_stacktrace.cc (StackTrace::FastUnwindStack):
45 Replace uptr with uhwptr for stack unwind.
46
f3754998
DS
472012-11-16 Dodji Seketeli <dodji@redhat.com>
48
49 * configure.tgt: Enable build on sparc linux.
50
f64bcb29
L
512012-11-15 H.J. Lu <hongjiu.lu@intel.com>
52
53 * configure.ac: Properly set MULTISUBDIR.
54 * asan/Makefile.am (gcc_version): New.
55 * interception/Makefile.am (gcc_version): Likewise.
56 * sanitizer_common/Makefile.am (gcc_version): Likewise.
57 * configure: Regenerated.
58 * asan/Makefile.in: Likewise.
59 * interception/Makefile.in: Likewise.
60 * sanitizer_common/Makefile.in: Likewise.
61
2a6346c4
L
622012-11-14 H.J. Lu <hongjiu.lu@intel.com>
63
64 PR other/55291
65 * configure.ac (--enable-version-specific-runtime-libs): New option.
66 (AC_CANONICAL_SYSTEM): New.
67 (AM_ENABLE_MULTILIB): Moved right after AM_INIT_AUTOMAKE.
68 (toolexecdir): Support multilib.
69 (toolexeclibdir): Likewise.
70 (multilib_arg): New.
71 * Makefile.in: Regenerated.
72 * aclocal.m4: Likewise.
73 * configure: Likewise.
74 * asan/Makefile.in: Likewise.
75 * interception/Makefile.in: Likewise.
76 * sanitizer_common/Makefile.in: Likewise.
77
4a56a7be
L
782012-11-14 H.J. Lu <hongjiu.lu@intel.com>
79
80 PR other/55292
81 Backport from upstream revision 167883
82 * sanitizer_common/sanitizer_linux.cc (internal_mmap): Check
83 __x86_64__ instead of __WORDSIZE.
84 (internal_filesize): Likwise.
85
4053ca2c
L
862012-11-14 H.J. Lu <hongjiu.lu@intel.com>
87
88 * configure.ac (AC_CONFIG_AUX_DIR): Removed.
89 * Makefile.in: Regenerated.
90 * configure: Likewise.
91
a2479b3d
L
922012-11-13 H.J. Lu <hongjiu.lu@intel.com>
93
94 PR other/55304
95 * acinclude.m4: New file.
96 * Makefile.am (ACLOCAL_AMFLAGS): New.
97 * configure.ac (AC_PREREQ): Set to 2.64.
98 (AC_CONFIG_AUX_DIR): Set to "..".
99 * Makefile.in: Regenerated.
100 * aclocal.m4: Likewise.
101 * configure: Likewise.
102 * asan/Makefile.in: Likewise.
103 * interception/Makefile.in: Likewise.
104 * sanitizer_common/Makefile.in: Likewise.
105
106 * config.guess: Removed.
107 * config.sub: Likewise.
108 * depcomp: Likewise.
109 * install-sh: Likewise.
110 * ltmain.sh: Likewise.
111 * missing: Likewise.
112
93bf5390
RH
1132012-11-13 Richard Henderson <rth@redhat.com>
114
115 * configure.tgt: New file.
116
d2860e72
DM
1172012-11-12 David S. Miller <davem@davemloft.net>
118
119 * asan/asan_linux.cc (GetPcSpBp): Add sparc support.
120
f35db108
WM
1212012-10-29 Wei Mi <wmi@google.com>
122
123 Initial checkin: migrate asan runtime from llvm.