* Added opt_shownativestub to show disassembled native stubs
[cacao.git] / src / cacao / cacao.c
index d0c08cc806f8382922c3e322d6596bb223b18134..fcf4c0c80c05a4790fef7bc8591ac57f6890ebc9 100644 (file)
@@ -37,7 +37,7 @@
      - Calling the class loader
      - Running the main method
 
-   $Id: cacao.c 2680 2005-06-14 17:14:08Z twisti $
+   $Id: cacao.c 2780 2005-06-22 10:51:03Z twisti $
 
 */
 
@@ -260,6 +260,7 @@ static void usage()
        printf("                 d(atasegment).. show data segment listing\n");
        printf("                 i(ntermediate). show intermediate representation\n");
        printf("                 m(ethods)...... show class fields and methods\n");
+       printf("                 n(ative)....... show disassembled native stubs\n");
        printf("                 u(tf) ......... show the utf - hash\n");
        printf("          -i     n ............. activate inlining\n");
        printf("                 v ............. inline virtual methods\n");
@@ -719,6 +720,9 @@ int main(int argc, char **argv)
                                case 'm':
                                        showmethods = true;
                                        break;
+                               case 'n':
+                                       opt_shownativestub = true;
+                                       break;
                                case 'u':
                                        showutf = true;
                                        break;