aboutsummaryrefslogtreecommitdiff
path: root/java/openjdk7
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-05-31 04:53:51 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-05-31 04:53:51 +0000
commit94001227e849bdc268a909284f64bef99f1a6c3e (patch)
tree5d603d48560ffbb93cccc09ade1e01a332ef1bfe /java/openjdk7
parentba670f45326a76dc3b5ce925e61069b58b69f9df (diff)
downloadports-94001227e849bdc268a909284f64bef99f1a6c3e.tar.gz
ports-94001227e849bdc268a909284f64bef99f1a6c3e.zip
Fix compilation with Clang 4.0.
Notes
Notes: svn path=/head/; revision=442135
Diffstat (limited to 'java/openjdk7')
-rw-r--r--java/openjdk7/files/patch-hotspot_src_share_vm_opto_lcm.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/java/openjdk7/files/patch-hotspot_src_share_vm_opto_lcm.cpp b/java/openjdk7/files/patch-hotspot_src_share_vm_opto_lcm.cpp
new file mode 100644
index 000000000000..cc4f623ccd8e
--- /dev/null
+++ b/java/openjdk7/files/patch-hotspot_src_share_vm_opto_lcm.cpp
@@ -0,0 +1,11 @@
+--- hotspot/src/share/vm/opto/lcm.cpp.orig 2017-05-30 23:06:51 UTC
++++ hotspot/src/share/vm/opto/lcm.cpp
+@@ -57,7 +57,7 @@
+ // Check whether val is not-null-decoded compressed oop,
+ // i.e. will grab into the base of the heap if it represents NULL.
+ static bool accesses_heap_base_zone(Node *val) {
+- if (Universe::narrow_oop_base() > 0) { // Implies UseCompressedOops.
++ if (Universe::narrow_oop_base() != NULL) { // Implies UseCompressedOops.
+ if (val && val->is_Mach()) {
+ if (val->as_Mach()->ideal_Opcode() == Op_DecodeN) {
+ // This assumes all Decodes with TypePtr::NotNull are matched to nodes that