diff options
author | Derek Bruening <bruening@google.com> | 2016-04-21 21:32:04 +0000 |
---|---|---|
committer | Derek Bruening <bruening@google.com> | 2016-04-21 21:32:04 +0000 |
commit | 256c2e14c7fc675da56adf0b4a95a61ac3c622aa (patch) | |
tree | 645dd3e5881511df574f4b52240f0f46f2505e92 /clang/test/Driver/sanitize_unwind_tables.c | |
parent | d862c178b0acfa531811b664531547e310d5769d (diff) | |
download | bcm5719-llvm-256c2e14c7fc675da56adf0b4a95a61ac3c622aa.tar.gz bcm5719-llvm-256c2e14c7fc675da56adf0b4a95a61ac3c622aa.zip |
[esan] EfficiencySanitizer driver flags
Summary:
Adds a framework to enable the instrumentation pass for the new
EfficiencySanitizer ("esan") family of tools. Adds a flag for esan's
cache fragmentation tool via -fsanitize=efficiency-cache-frag.
Adds appropriate tests for the new flag.
Reviewers: eugenis, vitalybuka, aizatsky, filcab
Subscribers: filcab, kubabrecka, llvm-commits, zhaoqin, kcc
Differential Revision: http://reviews.llvm.org/D19169
llvm-svn: 267059
Diffstat (limited to 'clang/test/Driver/sanitize_unwind_tables.c')
-rw-r--r-- | clang/test/Driver/sanitize_unwind_tables.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/test/Driver/sanitize_unwind_tables.c b/clang/test/Driver/sanitize_unwind_tables.c index 8b788996665..43a922d8fbf 100644 --- a/clang/test/Driver/sanitize_unwind_tables.c +++ b/clang/test/Driver/sanitize_unwind_tables.c @@ -7,5 +7,6 @@ // RUN: %clang -target x86_64-linux-gnu -fsanitize=memory %s -### 2>&1 | FileCheck %s // RUN: %clang -target x86_64-linux-gnu -fsanitize=thread %s -### 2>&1 | FileCheck %s // RUN: %clang -target x86_64-linux-gnu -fsanitize=dataflow %s -### 2>&1 | FileCheck %s +// RUN: %clang -target x86_64-linux-gnu -fsanitize=efficiency-cache-frag %s -### 2>&1 | FileCheck %s // CHECK: -munwind-tables |