diff options
| author | Kostya Serebryany <kcc@google.com> | 2011-12-06 21:10:15 +0000 |
|---|---|---|
| committer | Kostya Serebryany <kcc@google.com> | 2011-12-06 21:10:15 +0000 |
| commit | ca207f0473dcf0ace13a4320e78912bfa5f77565 (patch) | |
| tree | b5e98e12a7d8b031c3681d46e4e58cfcaf8241a5 /compiler-rt/lib/asan/asan_rtl.cc | |
| parent | 2a2b37ea4ab06f481881ac818d60fc39d5728791 (diff) | |
| download | bcm5719-llvm-ca207f0473dcf0ace13a4320e78912bfa5f77565.tar.gz bcm5719-llvm-ca207f0473dcf0ace13a4320e78912bfa5f77565.zip | |
[asan] minor cleanup
llvm-svn: 145966
Diffstat (limited to 'compiler-rt/lib/asan/asan_rtl.cc')
| -rw-r--r-- | compiler-rt/lib/asan/asan_rtl.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler-rt/lib/asan/asan_rtl.cc b/compiler-rt/lib/asan/asan_rtl.cc index 71c4eb05846..4fe840da7be 100644 --- a/compiler-rt/lib/asan/asan_rtl.cc +++ b/compiler-rt/lib/asan/asan_rtl.cc @@ -57,7 +57,6 @@ static int FLAG_atexit; bool FLAG_fast_unwind = true; size_t FLAG_redzone; // power of two, >= 32 -bool FLAG_mt; // set to 0 if you have only one thread. size_t FLAG_quarantine_size; int FLAG_demangle; bool FLAG_symbolize; @@ -665,7 +664,6 @@ void __asan_init() { FLAG_debug = IntFlagValue(options, "debug=", 0); FLAG_replace_cfallocator = IntFlagValue(options, "replace_cfallocator=", 1); FLAG_fast_unwind = IntFlagValue(options, "fast_unwind=", 1); - FLAG_mt = IntFlagValue(options, "mt=", 1); FLAG_replace_str = IntFlagValue(options, "replace_str=", 1); FLAG_replace_intrin = IntFlagValue(options, "replace_intrin=", 0); FLAG_use_fake_stack = IntFlagValue(options, "use_fake_stack=", 1); |

