diff src/share/vm/c1/c1_Instruction.hpp @ 20344:2fd0fd493045

8031994: java/lang/Character/CheckProp test times out Reviewed-by: iveresov, roland
author rbackman
date Wed, 04 Jun 2014 10:01:28 +0200
parents ce0cc25bc5e2
children
line wrap: on
line diff
--- a/src/share/vm/c1/c1_Instruction.hpp	Tue Aug 19 20:41:28 2014 +0100
+++ b/src/share/vm/c1/c1_Instruction.hpp	Wed Jun 04 10:01:28 2014 +0200
@@ -1291,16 +1291,18 @@
 LEAF(NewInstance, StateSplit)
  private:
   ciInstanceKlass* _klass;
+  bool _is_unresolved;
 
  public:
   // creation
-  NewInstance(ciInstanceKlass* klass, ValueStack* state_before)
+  NewInstance(ciInstanceKlass* klass, ValueStack* state_before, bool is_unresolved)
   : StateSplit(instanceType, state_before)
-  , _klass(klass)
+  , _klass(klass), _is_unresolved(is_unresolved)
   {}
 
   // accessors
   ciInstanceKlass* klass() const                 { return _klass; }
+  bool is_unresolved() const                     { return _is_unresolved; }
 
   virtual bool needs_exception_state() const     { return false; }