mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
6816308: Changes to allow builds with latest Windows SDK 6.1 on 64bit Windows 2003
Allow Hotspot builds with latest Windows SDK 6.1 on 64bit Windows 2003 Reviewed-by: ohair, tbell, jcoomes
This commit is contained in:
parent
b8dbe8d8f6
commit
f210928e73
12 changed files with 23 additions and 17 deletions
|
@ -235,7 +235,7 @@ class BlockOffsetArray: public BlockOffsetTable {
|
|||
};
|
||||
|
||||
static size_t power_to_cards_back(uint i) {
|
||||
return 1 << (LogBase * i);
|
||||
return (size_t)(1 << (LogBase * i));
|
||||
}
|
||||
static size_t power_to_words_back(uint i) {
|
||||
return power_to_cards_back(i) * N_words;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue