mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8206173: MallocSiteTable::initialize() doesn't take function descriptors into account
Reviewed-by: stuefe, zgu
This commit is contained in:
parent
41ecacc6a0
commit
7cefb320e9
2 changed files with 17 additions and 3 deletions
|
@ -569,6 +569,14 @@
|
|||
#define NOT_AARCH64(code) code
|
||||
#endif
|
||||
|
||||
#ifdef VM_LITTLE_ENDIAN
|
||||
#define LITTLE_ENDIAN_ONLY(code) code
|
||||
#define BIG_ENDIAN_ONLY(code)
|
||||
#else
|
||||
#define LITTLE_ENDIAN_ONLY(code)
|
||||
#define BIG_ENDIAN_ONLY(code) code
|
||||
#endif
|
||||
|
||||
#define define_pd_global(type, name, value) const type pd_##name = value;
|
||||
|
||||
// Helper macros for constructing file names for includes.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue