From c043c35800e5c76b8859395bff1fc01b8e491b07 Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Fri, 1 Jan 2010 22:35:42 +0000 Subject: [PATCH] Add execute-inline to the list of instructions that can throw an exception git-svn-id: https://smali.googlecode.com/svn/trunk@543 55b6fa8a-2a1e-11de-a435-ffa8d773f76a --- dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java | 1 + 1 file changed, 1 insertion(+) diff --git a/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java b/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java index e77ebfee..4fae6681 100644 --- a/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java +++ b/dexlib/src/main/java/org/jf/dexlib/Util/DeodexUtil.java @@ -119,6 +119,7 @@ public class DeodexUtil { instructionThrowTable.set(Opcode.DIV_INT_LIT8.value & 0xFF); instructionThrowTable.set(Opcode.REM_INT_LIT8.value & 0xFF); instructionThrowTable.set(Opcode.THROW.value & 0xFF); + instructionThrowTable.set(Opcode.INVOKE_EXECUTE_INLINE.value & 0xFF); instructionThrowTable.set(Opcode.IGET_QUICK.value & 0xFF); instructionThrowTable.set(Opcode.IGET_WIDE_QUICK.value & 0xFF); instructionThrowTable.set(Opcode.IGET_OBJECT_QUICK.value & 0xFF);