commit | 4df41a5726f32661f9e48307a3f3d9d5ae1e6cb5 | [log] [tgz] |
---|---|---|
author | Bill Buzbee <buzbee@google.com> | Thu Nov 12 17:07:16 2009 -0800 |
committer | Bill Buzbee <buzbee@google.com> | Sun Nov 15 10:45:24 2009 -0800 |
tree | bc24ba3a83dac217c9ed7c8b40559b007e9e0e06 | |
parent | 6446a30da6ba7a3ff23e7c374a49fb52d38437e6 [diff] |
Fix CHECK_CAST problem in the Jit. The Jit has previously (and wrongly) assumed that because any CHECK_CAST operation had previously succeeded in the interpreter, that the class that check cast's object was being check against would already be resolved. However, if the object being checked is NULL, no attempt is made to resolve the class. First bug flushed out by the Jit's stress mode (woohoo).