mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 02:00:30 -04:00
- Build fixes after GCC 4.2 import. - Remove SIGRTMIN and SIGRTMAX redefinitions. - Use posix_memalign(3) instead of valloc(3). Approved by: glewis (maintainer)
13 lines
629 B
Text
13 lines
629 B
Text
--- ../../hotspot/src/cpu/amd64/vm/amd64.ad.orig Thu May 24 15:27:42 2007
|
|
+++ ../../hotspot/src/cpu/amd64/vm/amd64.ad Thu May 24 17:15:10 2007
|
|
@@ -662,8 +662,8 @@
|
|
{
|
|
#ifdef ASSERT
|
|
if (rspec.reloc()->type() == relocInfo::oop_type &&
|
|
- d32 != 0 && d32 != (int) Universe::non_oop_word()) {
|
|
- assert(oop(d32)->is_oop() && oop(d32)->is_perm(), "cannot embed non-perm oops in code");
|
|
+ d32 != 0 && d32 != (intptr_t) Universe::non_oop_word()) {
|
|
+ assert(oop((intptr_t)d32)->is_oop() && oop((intptr_t)d32)->is_perm(), "cannot embed non-perm oops in code");
|
|
}
|
|
#endif
|
|
cbuf.relocate(cbuf.mark(), rspec, format);
|