6949423: remove tagged stack interpreter for Zero

Missed Zero changes for 6943304.

Reviewed-by: twisti
This commit is contained in:
Gary Benson 2010-05-04 02:33:59 -07:00 committed by Christian Thalinger
parent 973b1ef143
commit 416df6da75
3 changed files with 8 additions and 14 deletions

View file

@ -36,14 +36,14 @@
public:
static int expr_index_at(int i) {
return stackElementWords() * i;
return stackElementWords * i;
}
static int expr_offset_in_bytes(int i) {
return stackElementSize() * i;
return stackElementSize * i;
}
static int local_index_at(int i) {
assert(i <= 0, "local direction already negated");
return stackElementWords() * i;
return stackElementWords * i;
}