summaryrefslogtreecommitdiff
path: root/runtime/parsed_options.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2018-08-02 08:01:18 -0700
committer android-build-merger <android-build-merger@google.com> 2018-08-02 08:01:18 -0700
commit2c35abf99c38a670c2879efe9e0501743140bd67 (patch)
tree0a276ea9aa8305549b8c64758fdffd67aeb3ac2c /runtime/parsed_options.cc
parent622d08eea369eab4ba17922b78e9b48218ce3746 (diff)
parente8d8755abbf6543b41e03c6b86a5e1db31289868 (diff)
Merge "ART: Add parameter for verifier timing log threshold"
am: e8d8755abb Change-Id: Icc54053efaa6972ba9d46695dca614041ae5a5c1
Diffstat (limited to 'runtime/parsed_options.cc')
-rw-r--r--runtime/parsed_options.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/parsed_options.cc b/runtime/parsed_options.cc
index 7383d477bb..a44e5a4b54 100644
--- a/runtime/parsed_options.cc
+++ b/runtime/parsed_options.cc
@@ -333,6 +333,9 @@ std::unique_ptr<RuntimeParser> ParsedOptions::MakeParser(bool ignore_unrecognize
.IntoKey(M::UseStderrLogger)
.Define("-Xonly-use-system-oat-files")
.IntoKey(M::OnlyUseSystemOatFiles)
+ .Define("-Xverifier-logging-threshold=_")
+ .WithType<unsigned int>()
+ .IntoKey(M::VerifierLoggingThreshold)
.Ignore({
"-ea", "-da", "-enableassertions", "-disableassertions", "--runtime-arg", "-esa",
"-dsa", "-enablesystemassertions", "-disablesystemassertions", "-Xrs", "-Xint:_",