diff options
| author | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:03:55 -0800 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:03:55 -0800 |
| commit | 89c1feb0a69a7707b271086e749975b3f7acacf7 (patch) | |
| tree | 003624a03635e05020a47fc72a2c42934e3f0703 /dexdump/OpCodeNames.c | |
| parent | 2ad60cfc28e14ee8f0bb038720836a4696c478ad (diff) | |
| download | android_dalvik-89c1feb0a69a7707b271086e749975b3f7acacf7.tar.gz android_dalvik-89c1feb0a69a7707b271086e749975b3f7acacf7.tar.bz2 android_dalvik-89c1feb0a69a7707b271086e749975b3f7acacf7.zip | |
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'dexdump/OpCodeNames.c')
| -rw-r--r-- | dexdump/OpCodeNames.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/dexdump/OpCodeNames.c b/dexdump/OpCodeNames.c index e2e878397..378dcf729 100644 --- a/dexdump/OpCodeNames.c +++ b/dexdump/OpCodeNames.c @@ -19,14 +19,17 @@ #include "OpCodeNames.h" /* - * This works, but slashes and dashes both turn into underscores, and the - * strings are all upper case. The output is easier to read if we do the - * strings by hand (could probably write a conversion function easily enough - * if maintenance becomes annoying). + * The following two lines work, but slashes and dashes both turn into + * underscores, and the strings are all upper case. The output is easier + * to read if we do the strings by hand (could probably write a + * post-processing function easily enough if maintenance becomes annoying). */ //#define H(_op) #_op //DEFINE_GOTO_TABLE(gOpNames) +/* + * Dalvik opcode names. + */ static const char* gOpNames[256] = { /* 0x00 */ "nop", |
