diff options
Diffstat (limited to 'dexlayout/dexlayout_main.cc')
| -rw-r--r-- | dexlayout/dexlayout_main.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/dexlayout/dexlayout_main.cc b/dexlayout/dexlayout_main.cc index 2203fba325..825dd50355 100644 --- a/dexlayout/dexlayout_main.cc +++ b/dexlayout/dexlayout_main.cc @@ -51,7 +51,6 @@ static void Usage(void) { fprintf(stderr, " -d : disassemble code sections\n"); fprintf(stderr, " -e : display exported items only\n"); fprintf(stderr, " -f : display summary information from file header\n"); - fprintf(stderr, " -g : display CFG for dex\n"); fprintf(stderr, " -h : display file header details\n"); fprintf(stderr, " -i : ignore checksum failures\n"); fprintf(stderr, " -l : output layout, either 'plain' or 'xml'\n"); @@ -99,9 +98,6 @@ int DexlayoutDriver(int argc, char** argv) { case 'f': // display outer file header options_.show_file_headers_ = true; break; - case 'g': // display cfg - options_.show_cfg_ = true; - break; case 'h': // display section headers, i.e. all meta-data options_.show_section_headers_ = true; break; |