| commit | 9e45c0b968d63ea38353c99252d233879c2efdaf | [log] [tgz] |
|---|---|---|
| author | jeffhao <jeffhao@google.com> | Wed Feb 03 10:24:05 2010 -0800 |
| committer | jeffhao <jeffhao@google.com> | Thu Feb 04 15:26:00 2010 -0800 |
| tree | c73006a89afbfef530ba26f8cfd72a61bd235d5f | |
| parent | 4fbba1f95b3e27bdc5f5572bb0420b5f928aa54e [diff] [blame] |
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; }