src/share/vm/c1/c1_Instruction.hpp

changeset 2179
ad0638ff8ea4
parent 2174
f02a8bbe6ed4
child 2180
80c9354976b0
     1.1 --- a/src/share/vm/c1/c1_Instruction.hpp	Wed Sep 29 00:30:57 2010 -0700
     1.2 +++ b/src/share/vm/c1/c1_Instruction.hpp	Wed Sep 29 18:53:28 2010 +0200
     1.3 @@ -358,7 +358,7 @@
     1.4    }
     1.5  
     1.6    // creation
     1.7 -  Instruction(ValueType* type, ValueStack* state_before = NULL, bool type_is_constant = false, bool create_hi = true)
     1.8 +  Instruction(ValueType* type, ValueStack* state_before = NULL, bool type_is_constant = false)
     1.9    : _use_count(0)
    1.10  #ifndef PRODUCT
    1.11    , _printable_bci(-99)
    1.12 @@ -1966,9 +1966,9 @@
    1.13   public:
    1.14    // creation
    1.15  #ifdef _LP64
    1.16 -  OsrEntry() : Instruction(longType, false) { pin(); }
    1.17 +  OsrEntry() : Instruction(longType) { pin(); }
    1.18  #else
    1.19 -  OsrEntry() : Instruction(intType,  false) { pin(); }
    1.20 +  OsrEntry() : Instruction(intType)  { pin(); }
    1.21  #endif
    1.22  
    1.23    // generic
    1.24 @@ -1980,7 +1980,7 @@
    1.25  LEAF(ExceptionObject, Instruction)
    1.26   public:
    1.27    // creation
    1.28 -  ExceptionObject() : Instruction(objectType, false) {
    1.29 +  ExceptionObject() : Instruction(objectType) {
    1.30      pin();
    1.31    }
    1.32  

mercurial