Made Self Verification mode's memory interface less intrusive.
diff --git a/vm/compiler/Frontend.c b/vm/compiler/Frontend.c
index 347bc50..c8e8e52 100644
--- a/vm/compiler/Frontend.c
+++ b/vm/compiler/Frontend.c
@@ -300,7 +300,7 @@
     CompilerMethodStats *methodStats;
 
     /* If we've already compiled this trace, just return success */
-    if (dvmJitGetCodeAddr(startCodePtr)) {
+    if (dvmJitGetCodeAddr(startCodePtr) && !info->discardResult) {
         return true;
     }