diff options
| author | 2011-10-04 17:37:27 -0700 | |
|---|---|---|
| committer | 2011-10-04 17:56:41 -0700 | |
| commit | 20cde9033d51103f31e21436e88f80e1170c78ad (patch) | |
| tree | 4b7c66092d988a9ed9345b66868da9cdf5cc8b4a /src/jni_compiler.cc | |
| parent | b408de744566a5c5a80be1ba7f5c88407e816945 (diff) | |
Add Class::IsFinalizable and Object::AddFinalizerReference.
Also correctly set the special bit in Class' flags.
We need compiler support before I can go further.
Change-Id: Ib7a637d7140a6f8c416635738d4d0b57c17ad628
Diffstat (limited to 'src/jni_compiler.cc')
| -rw-r--r-- | src/jni_compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jni_compiler.cc b/src/jni_compiler.cc index c8cfc66f8e..83be88a226 100644 --- a/src/jni_compiler.cc +++ b/src/jni_compiler.cc @@ -219,7 +219,7 @@ void JniCompiler::Compile(Method* native_method) { // to the convention required for a native call (shuffling). For references // place an index/pointer to the reference after checking whether it is // NULL (which must be encoded as NULL). - // NB. we do this prior to materializing the JNIEnv* and static's jclass to + // Note: we do this prior to materializing the JNIEnv* and static's jclass to // give as many free registers for the shuffle as possible mr_conv->ResetIterator(FrameOffset(frame_size+out_arg_size)); uint32_t args_count = 0; |