summaryrefslogtreecommitdiffstats
path: root/vm/interp
diff options
context:
space:
mode:
authorbuzbee <buzbee@google.com>2012-01-18 09:42:29 -0800
committerbuzbee <buzbee@google.com>2012-01-18 09:42:29 -0800
commit3560a2d72e377a36fc0a8ee675b3bf6096dc8f43 (patch)
tree1036b8479d8e71b69fa95bac23361efb2db77fe0 /vm/interp
parent09153feb3c522f578a581d8b9d9d29aa00df20fc (diff)
downloadandroid_dalvik-3560a2d72e377a36fc0a8ee675b3bf6096dc8f43.tar.gz
android_dalvik-3560a2d72e377a36fc0a8ee675b3bf6096dc8f43.tar.bz2
android_dalvik-3560a2d72e377a36fc0a8ee675b3bf6096dc8f43.zip
Remove stale assert
Delete a stale assert that can cause problems when running with the portable interpreter when debugging or profiling. Change-Id: I354a1fbe280e1baeb885cb51fed1f3e2c8eef159
Diffstat (limited to 'vm/interp')
-rw-r--r--vm/interp/Interp.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/vm/interp/Interp.cpp b/vm/interp/Interp.cpp
index 408255fd9..41097644f 100644
--- a/vm/interp/Interp.cpp
+++ b/vm/interp/Interp.cpp
@@ -1696,7 +1696,6 @@ void dvmInitializeInterpBreak(Thread* thread)
void dvmCheckBefore(const u2 *pc, u4 *fp, Thread* self)
{
const Method* method = self->interpSave.method;
- assert(self->interpBreak.ctl.breakFlags != 0);
assert(pc >= method->insns && pc <
method->insns + dvmGetMethodInsnsSize(method));