summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2017-11-07 15:00:35 -0800
committer Andreas Gampe <agampe@google.com> 2017-11-07 15:00:35 -0800
commite20ff6f0305b36d430ae07e66e785caf58258fcd (patch)
tree1b7c09c2b3270e4a6b202aa23340c0da6c78dbbb
parent41a7e1562e55fd7e4ca4d39ad327749ea316d20c (diff)
ART: Fix up dex2oat usage message
Follow-up to commit cac31ad4c43a24a959a4d3652b8b46538bdc8c53. Test: none Change-Id: I6b65085aeec15ececf2368110c50002bb392af66
-rw-r--r--dex2oat/dex2oat.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index 29228a3c4f..9fa7f697d9 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -452,8 +452,8 @@ NO_RETURN static void Usage(const char* fmt, ...) {
UsageError(" --compact-dex-level=none|fast: None avoids generating compact dex, fast");
UsageError(" generates compact dex with low compile time.");
UsageError("");
- UsageError(" --deduplicate-code|--no-deduplicate-code: enable|disable code deduplication.");
- UsageError(" Deduplicated code will have an arbitrary symbol tagged with [DEDUPED].");
+ UsageError(" --deduplicate-code=true|false: enable|disable code deduplication. Deduplicated");
+ UsageError(" code will have an arbitrary symbol tagged with [DEDUPED].");
UsageError("");
std::cerr << "See log for usage error information\n";
exit(EXIT_FAILURE);