From 7139497656147275156e7242a8bf08794af9130a Mon Sep 17 00:00:00 2001 From: Kirill Stoimenov Date: Thu, 15 Jul 2021 13:53:56 -0700 Subject: [PATCH] [asan] Slightly modified the documentation. The goal of this change is to test if I can commit changes. Reviewed By: kcc Differential Revision: https://reviews.llvm.org/D106101 --- clang/docs/AddressSanitizer.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/docs/AddressSanitizer.rst b/clang/docs/AddressSanitizer.rst index 15ac6ff5ac85..7befbc3173da 100644 --- a/clang/docs/AddressSanitizer.rst +++ b/clang/docs/AddressSanitizer.rst @@ -286,7 +286,7 @@ By default AddressSanitizer inlines the instumentation code to improve the run-time performance, which leads to increased binary size. Using the (clang flag ``-fsanitize-address-outline-instrumentation` default: ``false``) flag forces all code instumentation to be outlined, which reduces the size -of the binary, but also reduces the run-time performace. +of the generated code, but also reduces the run-time performace. Limitations ===========