diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-02-13 17:05:19 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-02-13 17:05:19 -0800 |
commit | e3018e6f7d86cea35b2bc7f76e0b722b1ed7851b (patch) | |
tree | a3a6937922f85d6610736077f3fffbdfcd2bf4ff /templates | |
parent | bb62706f8428357d3f96d6de9e65c8fc6b439b9c (diff) |
Avoid four allocations per stream
Diffstat (limited to 'templates')
-rw-r--r-- | templates/Makefile.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/Makefile.template b/templates/Makefile.template index b9ae217054..0a453cbd8b 100644 --- a/templates/Makefile.template +++ b/templates/Makefile.template @@ -86,7 +86,7 @@ CC_msan = clang CXX_msan = clang++ LD_msan = clang LDXX_msan = clang++ -CPPFLAGS_msan = -O1 -fsanitize=memory -fno-omit-frame-pointer +CPPFLAGS_msan = -O1 -fsanitize=memory -fno-omit-frame-pointer -fsanitize-memory-track-origins OPENSSL_CFLAGS_msan = -DPURIFY OPENSSL_CONFIG_msan = no-asm LDFLAGS_msan = -fsanitize=memory |