diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-02-08 21:10:00 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-02-08 21:10:00 +0000 |
commit | ce1437abaab1eec6349c295a40a0dd38a6d8584d (patch) | |
tree | cce8fcbd1816cca1a7278beafdeb98aa8b3c5c0b | |
parent | 1288a19421232137ed288e4b9ba202f3b37b2006 (diff) | |
download | bcm5719-llvm-ce1437abaab1eec6349c295a40a0dd38a6d8584d.tar.gz bcm5719-llvm-ce1437abaab1eec6349c295a40a0dd38a6d8584d.zip |
Fix typo in asan_flags.
Patch by Michael Stapelberg.
llvm-svn: 260147
-rw-r--r-- | compiler-rt/lib/asan/asan_flags.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_flags.inc b/compiler-rt/lib/asan/asan_flags.inc index 93623b9def6..21a81da1068 100644 --- a/compiler-rt/lib/asan/asan_flags.inc +++ b/compiler-rt/lib/asan/asan_flags.inc @@ -106,7 +106,7 @@ ASAN_FLAG(bool, alloc_dealloc_mismatch, "Report errors on malloc/delete, new/free, new/delete[], etc.") ASAN_FLAG(bool, new_delete_type_mismatch, true, - "Report errors on mismatch betwen size of new and delete.") + "Report errors on mismatch between size of new and delete.") ASAN_FLAG( bool, strict_init_order, false, "If true, assume that dynamic initializers can never access globals from " |