summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/patches-openjdk-8/hotspot-handle-gcc7-format-overflow.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/hotspot-handle-gcc7-format-overflow.patch')
-rw-r--r--recipes-core/openjdk/patches-openjdk-8/hotspot-handle-gcc7-format-overflow.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/hotspot-handle-gcc7-format-overflow.patch b/recipes-core/openjdk/patches-openjdk-8/hotspot-handle-gcc7-format-overflow.patch
deleted file mode 100644
index 83626b3..0000000
--- a/recipes-core/openjdk/patches-openjdk-8/hotspot-handle-gcc7-format-overflow.patch
+++ /dev/null
@@ -1,25 +0,0 @@
1# HG changeset patch
2# User Andreas Obergschwandtner <andreas.obergschwandtner@skidata.com>
3# Date 1537519446 -7200
4# Fri Sep 21 10:44:06 2018 +0200
5# Node ID 213da2c3ee54a558abd30b0230afa40d4b4e7f83
6# Parent 80ee2541504ec08d65da9d968a18a00a69858ce0
7Handle format error for GCC >= 7
8
9diff --git a/hotspot/src/share/vm/adlc/output_c.cpp b/hotspot/src/share/vm/adlc/output_c.cpp
10--- a/hotspot/src/share/vm/adlc/output_c.cpp
11+++ b/hotspot/src/share/vm/adlc/output_c.cpp
12@@ -436,9 +436,11 @@
13 for (i = maxcycleused; i > 0; i /= 10)
14 cycledigit++;
15
16- int maskdigit = 0;
17- for (i = rescount; i > 0; i /= 10)
18+ int maskdigit = 1;
19+ for (i = rescount / 10; i > 0; i /= 10)
20 maskdigit++;
21+ if (maskdigit > 10)
22+ maskdigit = 10;
23
24 static const char* pipeline_use_cycle_mask = "Pipeline_Use_Cycle_Mask";
25 static const char* pipeline_use_element = "Pipeline_Use_Element";