[compiler-rt] r260147 - Fix typo in asan_flags.

George Burgess IV via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 8 13:10:00 PST 2016


Author: gbiv
Date: Mon Feb  8 15:10:00 2016
New Revision: 260147

URL: http://llvm.org/viewvc/llvm-project?rev=260147&view=rev
Log:
Fix typo in asan_flags.

Patch by Michael Stapelberg.

Modified:
    compiler-rt/trunk/lib/asan/asan_flags.inc

Modified: compiler-rt/trunk/lib/asan/asan_flags.inc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/asan_flags.inc?rev=260147&r1=260146&r2=260147&view=diff
==============================================================================
--- compiler-rt/trunk/lib/asan/asan_flags.inc (original)
+++ compiler-rt/trunk/lib/asan/asan_flags.inc Mon Feb  8 15:10:00 2016
@@ -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 "




More information about the llvm-commits mailing list