OpenJDK / graal / graal-jvmci-8
changeset 1824:ad0638ff8ea4
6988303: 6986046 breaks build with recent gcc
Summary: fixes build break
Reviewed-by: never, kvn
author | roland |
---|---|
date | Wed, 29 Sep 2010 18:53:28 +0200 |
parents | 8aa5fd5d2046 |
children | 80c9354976b0 |
files | src/share/vm/c1/c1_Instruction.hpp |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/share/vm/c1/c1_Instruction.hpp Wed Sep 29 00:30:57 2010 -0700 +++ b/src/share/vm/c1/c1_Instruction.hpp Wed Sep 29 18:53:28 2010 +0200 @@ -358,7 +358,7 @@ } // creation - Instruction(ValueType* type, ValueStack* state_before = NULL, bool type_is_constant = false, bool create_hi = true) + Instruction(ValueType* type, ValueStack* state_before = NULL, bool type_is_constant = false) : _use_count(0) #ifndef PRODUCT , _printable_bci(-99) @@ -1966,9 +1966,9 @@ public: // creation #ifdef _LP64 - OsrEntry() : Instruction(longType, false) { pin(); } + OsrEntry() : Instruction(longType) { pin(); } #else - OsrEntry() : Instruction(intType, false) { pin(); } + OsrEntry() : Instruction(intType) { pin(); } #endif // generic @@ -1980,7 +1980,7 @@ LEAF(ExceptionObject, Instruction) public: // creation - ExceptionObject() : Instruction(objectType, false) { + ExceptionObject() : Instruction(objectType) { pin(); }