7087445: Improve platform independence of JSR292 shared code

Changes necessary for some JSR292 ports

Reviewed-by: jrose, dholmes
This commit is contained in:
Bertrand Delsart 2011-09-08 10:12:25 +02:00
parent 61068411fa
commit 6141a568aa
9 changed files with 34 additions and 14 deletions

View file

@ -425,3 +425,9 @@ void frame::describe_pd(FrameValues& values, int frame_no) {
}
#endif
intptr_t *frame::initial_deoptimization_info() {
// unused... but returns fp() to minimize changes introduced by 7087445
return fp();
}