提交 980afabc 编写于 作者: R roland

6988303: 6986046 breaks build with recent gcc

Summary: fixes build break
Reviewed-by: never, kvn
上级 8f5dead7
...@@ -358,7 +358,7 @@ class Instruction: public CompilationResourceObj { ...@@ -358,7 +358,7 @@ class Instruction: public CompilationResourceObj {
} }
// creation // 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) : _use_count(0)
#ifndef PRODUCT #ifndef PRODUCT
, _printable_bci(-99) , _printable_bci(-99)
...@@ -1966,9 +1966,9 @@ LEAF(OsrEntry, Instruction) ...@@ -1966,9 +1966,9 @@ LEAF(OsrEntry, Instruction)
public: public:
// creation // creation
#ifdef _LP64 #ifdef _LP64
OsrEntry() : Instruction(longType, false) { pin(); } OsrEntry() : Instruction(longType) { pin(); }
#else #else
OsrEntry() : Instruction(intType, false) { pin(); } OsrEntry() : Instruction(intType) { pin(); }
#endif #endif
// generic // generic
...@@ -1980,7 +1980,7 @@ LEAF(OsrEntry, Instruction) ...@@ -1980,7 +1980,7 @@ LEAF(OsrEntry, Instruction)
LEAF(ExceptionObject, Instruction) LEAF(ExceptionObject, Instruction)
public: public:
// creation // creation
ExceptionObject() : Instruction(objectType, false) { ExceptionObject() : Instruction(objectType) {
pin(); pin();
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册