wasn't propogating deadness in all cases

git-svn-id: https://smali.googlecode.com/svn/trunk@462 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2009-09-11 03:14:40 +00:00
parent a37715b6ec
commit dbaa44be6c

View File

@ -298,6 +298,7 @@ public class DeodexUtil {
//it, and let the caller choose which "default" method to call in this case
if (regType == RegisterType.Null) {
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
i.propogateDeadness();
return true;
}
@ -360,6 +361,7 @@ public class DeodexUtil {
//it, and let the caller choose which "default" method to call in this case
if (regType == RegisterType.Null) {
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
i.propogateDeadness();
return true;
}
@ -401,6 +403,7 @@ public class DeodexUtil {
//it, and let the caller choose which "default" method to call in this case
if (regType == RegisterType.Null) {
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
i.propogateDeadness();
return true;
}
@ -637,6 +640,7 @@ public class DeodexUtil {
//and let the caller choose which "default" method to call in this case
if (regType == RegisterType.Null) {
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
i.propogateDeadness();
return true;
}
@ -731,6 +735,7 @@ public class DeodexUtil {
//and let the caller choose which "default" method to call in this case
if (regType == RegisterType.Null) {
i.fixedInstruction = new UnresolvedNullReference(i.instruction, registerNum);
i.propogateDeadness();
return true;
}