OSDN Git Service

Fix stupid copy-paste error.
authorDan Bornstein <danfuzz@android.com>
Sat, 4 Dec 2010 01:48:27 +0000 (17:48 -0800)
committerDan Bornstein <danfuzz@android.com>
Sat, 4 Dec 2010 01:48:27 +0000 (17:48 -0800)
Change-Id: I1ad1e8c26ec47b9b148fc6a4292afa2ee25e58e2

opcode-gen/opcode-gen.awk

index 2656625..82e4fcf 100644 (file)
@@ -127,8 +127,8 @@ emission == "libcore-maximum-values" {
 emission == "libdex-maximum-values" {
     emissionHandled = 1;
 
-    printf("#define kMaxOpcodeValue = 0x%x;\n", MAX_OPCODE);
-    printf("#define kNumPackedOpcodes = 0x%x;\n", MAX_PACKED_OPCODE + 1);
+    printf("#define kMaxOpcodeValue 0x%x\n", MAX_OPCODE);
+    printf("#define kNumPackedOpcodes 0x%x\n", MAX_PACKED_OPCODE + 1);
 }
 
 emission == "libdex-opcode-enum" {