summaryrefslogtreecommitdiff
path: root/runtime/dex_instruction.h
diff options
context:
space:
mode:
author Narayan Kamath <narayan@google.com> 2016-08-02 08:09:35 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-08-02 08:09:35 +0000
commit3d6094531e3790b25c43e59fd6cd0b6b99d3447c (patch)
tree22f88d55fda3f363590bfc04d225840e7f4480fe /runtime/dex_instruction.h
parentba65cc4a71273904294245cb37ce70e5bce797e3 (diff)
parentbd48b3490a35480ad54586a4d8c7529e0a9a8c84 (diff)
Merge "dex_instruction: remove unused parameter from instruction definitions."
Diffstat (limited to 'runtime/dex_instruction.h')
-rw-r--r--runtime/dex_instruction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/dex_instruction.h b/runtime/dex_instruction.h
index 89c3db6223..c7856f06c8 100644
--- a/runtime/dex_instruction.h
+++ b/runtime/dex_instruction.h
@@ -80,7 +80,7 @@ class Instruction {
};
enum Code { // private marker to avoid generate-operator-out.py from processing.
-#define INSTRUCTION_ENUM(opcode, cname, p, f, r, i, a, v) cname = (opcode),
+#define INSTRUCTION_ENUM(opcode, cname, p, f, i, a, v) cname = (opcode),
#include "dex_instruction_list.h"
DEX_INSTRUCTION_LIST(INSTRUCTION_ENUM)
#undef DEX_INSTRUCTION_LIST