forked from OSchip/llvm-project
[asan] Fix spelling in asan_rtl.cc Test commit.
Reviewers: kcc, glider, samsonov Reviewed By: glider CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D676 llvm-svn: 179595
This commit is contained in:
parent
d1dae90bf2
commit
0136943e03
|
@ -64,7 +64,7 @@ static void AsanCheckFailed(const char *file, int line, const char *cond,
|
|||
}
|
||||
|
||||
// -------------------------- Flags ------------------------- {{{1
|
||||
static const int kDeafultMallocContextSize = 30;
|
||||
static const int kDefaultMallocContextSize = 30;
|
||||
|
||||
Flags asan_flags_dont_use_directly; // use via flags().
|
||||
|
||||
|
@ -139,7 +139,7 @@ void InitializeFlags(Flags *f, const char *env) {
|
|||
f->debug = false;
|
||||
f->report_globals = 1;
|
||||
f->check_initialization_order = false;
|
||||
f->malloc_context_size = kDeafultMallocContextSize;
|
||||
f->malloc_context_size = kDefaultMallocContextSize;
|
||||
f->replace_str = true;
|
||||
f->replace_intrin = true;
|
||||
f->mac_ignore_invalid_free = false;
|
||||
|
|
Loading…
Reference in New Issue