summaryrefslogtreecommitdiff
path: root/lib/msan/msan_flags.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2013-02-07 08:04:56 +0000
committerKostya Serebryany <kcc@google.com>2013-02-07 08:04:56 +0000
commit1d333c5a34d896f239001e3fe69a660e40d15301 (patch)
tree34475e9369ec0f546b9a61d4e9517669a290edb7 /lib/msan/msan_flags.h
parentcb8b91d6040f07bb42d3053bc4a44ff8e3e7f05f (diff)
[msan] add strip_path_prefix flag; print error summary; don't crash while printing summary if debug info is missing. The tests will follow later once we establish the lit-like tests for msan.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@174595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/msan/msan_flags.h')
-rw-r--r--lib/msan/msan_flags.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/msan/msan_flags.h b/lib/msan/msan_flags.h
index a85fc5725..0c41c2eb2 100644
--- a/lib/msan/msan_flags.h
+++ b/lib/msan/msan_flags.h
@@ -25,6 +25,7 @@ struct Flags {
bool poison_stack_with_zeroes; // default: false
bool poison_in_malloc; // default: true
bool report_umrs;
+ const char *strip_path_prefix;
};
Flags *flags();