summaryrefslogtreecommitdiffstats
path: root/src/dex_cache.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2011-08-29 20:08:52 -0700
committerBrian Carlstrom <bdc@google.com>2011-08-29 23:29:56 -0700
commit8a48741b96ca9cc5835cac72ac133c4ca480930f (patch)
treebbab3d50aa6eebb2a8182a7dac0caf7046104a1a /src/dex_cache.h
parenta19f2a5240fcf5baf989a26c7a6cf37247432c1b (diff)
downloadart-8a48741b96ca9cc5835cac72ac133c4ca480930f.zip
art-8a48741b96ca9cc5835cac72ac133c4ca480930f.tar.gz
art-8a48741b96ca9cc5835cac72ac133c4ca480930f.tar.bz2
Allow compilation of classes in different ClassLoaders
Change-Id: Ib0420471590a4c6d16bc25285ef3876098eacb36
Diffstat (limited to 'src/dex_cache.h')
-rw-r--r--src/dex_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dex_cache.h b/src/dex_cache.h
index 0d217bc..137f267 100644
--- a/src/dex_cache.h
+++ b/src/dex_cache.h
@@ -26,7 +26,7 @@ class CodeAndDirectMethods : public IntArray {
}
void SetResolvedDirectMethodTrampoline(uint32_t method_idx) {
- UNIMPLEMENTED(FATAL) << "need to install a trampoline to resolve the method_idx at runtime";
+ UNIMPLEMENTED(WARNING) << "need to install a trampoline to resolve the method_idx at runtime";
Set(method_idx * kMax + kCode, 0xffffffff);
Set(method_idx * kMax + kMethod, method_idx);
}