diff options
| author | Alexey Samsonov <samsonov@google.com> | 2013-10-31 00:40:15 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2013-10-31 00:40:15 +0000 |
| commit | 85cee41633cca5a9a4ffd1766318a8880b813d4e (patch) | |
| tree | 1a45a10237f6f892d5f0456bf45964d24ebdf4a1 /compiler-rt/lib | |
| parent | 7236678687703799fd09cf9fa07aebe995a2071d (diff) | |
| download | bcm5719-llvm-85cee41633cca5a9a4ffd1766318a8880b813d4e.tar.gz bcm5719-llvm-85cee41633cca5a9a4ffd1766318a8880b813d4e.zip | |
[ASan] Turn on (non-strict) initialization order checker by default for all ASan users
llvm-svn: 193729
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/asan/asan_rtl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_rtl.cc b/compiler-rt/lib/asan/asan_rtl.cc index db680215860..93033f974fd 100644 --- a/compiler-rt/lib/asan/asan_rtl.cc +++ b/compiler-rt/lib/asan/asan_rtl.cc @@ -149,7 +149,7 @@ void InitializeFlags(Flags *f, const char *env) { f->redzone = 16; f->debug = false; f->report_globals = 1; - f->check_initialization_order = false; + f->check_initialization_order = true; f->replace_str = true; f->replace_intrin = true; f->mac_ignore_invalid_free = false; |

