From e11473fe06f0d0c0e8e42fa5f6282a70904b5ec6 Mon Sep 17 00:00:00 2001 From: Evgeniy Stepanov Date: Tue, 20 Jan 2015 13:21:20 +0000 Subject: [asan] Allow changing verbosity in activation flags. This change removes some debug output in asan_flags.cc that was reading the verbosity level before all the flags were parsed. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@226566 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/msan/msan.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/msan/msan.cc') diff --git a/lib/msan/msan.cc b/lib/msan/msan.cc index e8aeb4539..8b70027bf 100644 --- a/lib/msan/msan.cc +++ b/lib/msan/msan.cc @@ -157,7 +157,9 @@ static void InitializeFlags(Flags *f, const char *options) { parser.ParseString(options); - if (common_flags()->verbosity) ReportUnrecognizedFlags(); + SetVerbosity(common_flags()->verbosity); + + if (Verbosity()) ReportUnrecognizedFlags(); if (common_flags()->help) parser.PrintFlagDescriptions(); -- cgit v1.2.3