diff 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
line wrap: on
line diff
--- a/src/share/vm/code/pcDesc.hpp	Sat Dec 17 21:40:27 2011 +0100
+++ b/src/share/vm/code/pcDesc.hpp	Sat Dec 17 22:03:44 2011 +0100
@@ -72,7 +72,7 @@
   };
 
   // Flags
-  bool     rethrow_exception()              const { return _flags & PCDESC_rethrow_exception; }
+  bool     rethrow_exception()              const { return (_flags & PCDESC_rethrow_exception) != 0; }
   void set_rethrow_exception(bool z)              { set_flag(PCDESC_rethrow_exception, z);    }
   bool     should_reexecute()              const { return (_flags & PCDESC_reexecute) != 0; }
   void set_should_reexecute(bool z)              { set_flag(PCDESC_reexecute, z); }