From f25f71342619b5cc9a286ab2db90d9098417f577 Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Mon, 22 Feb 2010 07:02:09 +0000 Subject: [PATCH] change the default value for the -r parameter to ARGS|DEST git-svn-id: https://smali.googlecode.com/svn/trunk@642 55b6fa8a-2a1e-11de-a435-ffa8d773f76a --- baksmali/src/main/java/org/jf/baksmali/main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baksmali/src/main/java/org/jf/baksmali/main.java b/baksmali/src/main/java/org/jf/baksmali/main.java index ca976836..cb559c33 100644 --- a/baksmali/src/main/java/org/jf/baksmali/main.java +++ b/baksmali/src/main/java/org/jf/baksmali/main.java @@ -148,7 +148,7 @@ public class main { String[] values = commandLine.getOptionValues('r'); if (values == null || values.length == 0) { - registerInfo = ARGS | DEST | MERGE; + registerInfo = ARGS | DEST; } else { for (String value: values) { if (value.equalsIgnoreCase("ALL")) { @@ -377,7 +377,7 @@ public class main { .withArgName("REGISTER_INFO_TYPES") .withValueSeparator(',') .withDescription("print the specificed type(s) of register information for each instruction. " + - "\"ARGS,DEST,MERGE\" is the default if no types are specified.\nValid values are:\nALL: all " + + "\"ARGS,DEST\" is the default if no types are specified.\nValid values are:\nALL: all " + "pre- and post-instruction registers.\nALLPRE: all pre-instruction registers\nALLPOST: all " + "post-instruction registers\nARGS: any pre-instruction registers used as arguments to the " + "instruction\nDEST: the post-instruction destination register, if any\nMERGE: Any " +