mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 11:34:38 +02:00
6949423: remove tagged stack interpreter for Zero
Missed Zero changes for 6943304. Reviewed-by: twisti
This commit is contained in:
parent
973b1ef143
commit
416df6da75
3 changed files with 8 additions and 14 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue