comparison src/share/vm/code/pcDesc.hpp @ 4138:82af018d61db

Merge fixes.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sat, 17 Dec 2011 22:03:44 +0100
parents 04b9a2566eec
children 51111665eda6
comparison
equal deleted inserted replaced
4137:04b9a2566eec 4138:82af018d61db
70 lower_offset_limit = -1, 70 lower_offset_limit = -1,
71 upper_offset_limit = (unsigned int)-1 >> 1 71 upper_offset_limit = (unsigned int)-1 >> 1
72 }; 72 };
73 73
74 // Flags 74 // Flags
75 bool rethrow_exception() const { return _flags & PCDESC_rethrow_exception; } 75 bool rethrow_exception() const { return (_flags & PCDESC_rethrow_exception) != 0; }
76 void set_rethrow_exception(bool z) { set_flag(PCDESC_rethrow_exception, z); } 76 void set_rethrow_exception(bool z) { set_flag(PCDESC_rethrow_exception, z); }
77 bool should_reexecute() const { return (_flags & PCDESC_reexecute) != 0; } 77 bool should_reexecute() const { return (_flags & PCDESC_reexecute) != 0; }
78 void set_should_reexecute(bool z) { set_flag(PCDESC_reexecute, z); } 78 void set_should_reexecute(bool z) { set_flag(PCDESC_reexecute, z); }
79 79
80 // Does pd refer to the same information as pd? 80 // Does pd refer to the same information as pd?