mirror of
https://github.com/revanced/smali.git
synced 2025-05-11 11:54:29 +02:00
change execute_inline to execute-inline, for consistency
git-svn-id: https://smali.googlecode.com/svn/trunk@538 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
parent
f5ba5fa361
commit
da3b7b1150
@ -254,7 +254,7 @@ public enum Opcode
|
|||||||
USHR_INT_LIT8((byte)0xe2, "ushr-int/lit8", ReferenceType.none, Format.Format22b),
|
USHR_INT_LIT8((byte)0xe2, "ushr-int/lit8", ReferenceType.none, Format.Format22b),
|
||||||
|
|
||||||
|
|
||||||
INVOKE_EXECUTE_INLINE((byte)0xee, "execute_inline", ReferenceType.none, Format.Format35ms, true),
|
INVOKE_EXECUTE_INLINE((byte)0xee, "execute-inline", ReferenceType.none, Format.Format35ms, true),
|
||||||
INVOKE_DIRECT_EMPTY((byte)0xf0, "invoke-direct-empty", ReferenceType.method, Format.Format35s, true),
|
INVOKE_DIRECT_EMPTY((byte)0xf0, "invoke-direct-empty", ReferenceType.method, Format.Format35s, true),
|
||||||
IGET_QUICK((byte)0xf2, "iget-quick", ReferenceType.none, Format.Format22cs, true),
|
IGET_QUICK((byte)0xf2, "iget-quick", ReferenceType.none, Format.Format22cs, true),
|
||||||
IGET_WIDE_QUICK((byte)0xf3, "iget-wide-quick", ReferenceType.none, Format.Format22cs, true),
|
IGET_WIDE_QUICK((byte)0xf3, "iget-wide-quick", ReferenceType.none, Format.Format22cs, true),
|
||||||
@ -299,7 +299,7 @@ public enum Opcode
|
|||||||
Opcode(byte opcodeValue, String opcodeName, ReferenceType referenceType, Format format) {
|
Opcode(byte opcodeValue, String opcodeName, ReferenceType referenceType, Format format) {
|
||||||
this(opcodeValue, opcodeName, referenceType, format, false);
|
this(opcodeValue, opcodeName, referenceType, format, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
Opcode(byte opcodeValue, String opcodeName, ReferenceType referenceType, Format format, boolean odexOnly) {
|
Opcode(byte opcodeValue, String opcodeName, ReferenceType referenceType, Format format, boolean odexOnly) {
|
||||||
this.value = opcodeValue;
|
this.value = opcodeValue;
|
||||||
this.name = opcodeName;
|
this.name = opcodeName;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user