diff options
author | Kostya Serebryany <kcc@google.com> | 2016-08-18 01:25:28 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2016-08-18 01:25:28 +0000 |
commit | 524c3f32e7164a1b1796cb2342207c1012c54cdc (patch) | |
tree | dff896a824ae1ad72ad7257606be8b50eb5ded5c /llvm/lib/Fuzzer/test | |
parent | 385b973ad35377648a456e7e24aaf705b85df349 (diff) | |
download | bcm5719-llvm-524c3f32e7164a1b1796cb2342207c1012c54cdc.tar.gz bcm5719-llvm-524c3f32e7164a1b1796cb2342207c1012c54cdc.zip |
[sanitizer-coverage/libFuzzer] instrument comparisons with __sanitizer_cov_trace_cmp[1248] instead of __sanitizer_cov_trace_cmp, don't pass the comparison type to save a bit performance. Use these new callbacks in libFuzzer
llvm-svn: 279027
Diffstat (limited to 'llvm/lib/Fuzzer/test')
-rw-r--r-- | llvm/lib/Fuzzer/test/value-profile-cmp.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/test/value-profile-cmp.test b/llvm/lib/Fuzzer/test/value-profile-cmp.test index e4059cd82ee..3567edca5f8 100644 --- a/llvm/lib/Fuzzer/test/value-profile-cmp.test +++ b/llvm/lib/Fuzzer/test/value-profile-cmp.test @@ -1,3 +1,5 @@ CHECK: BINGO RUN: not LLVMFuzzer-SimpleCmpTest -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s +RUN: not LLVMFuzzer-SimpleHashTest -use_value_profile=1 -runs=100000000 2>&1 | FileCheck %s + |