diff src/share/vm/opto/machnode.hpp @ 14431:1410ad6b05f1

8028401: PPC (part 117): Improve usability of adlc and format() functionality. Summary: Add additional, more verbose syntax checks in adlc. Fix printing constant's problem in format(). Reviewed-by: kvn
author goetz
date Fri, 15 Nov 2013 12:01:00 -0800
parents 044b28168e20
children 318d0622a6d7
line wrap: on
line diff
--- a/src/share/vm/opto/machnode.hpp	Fri Nov 15 14:09:26 2013 -0500
+++ b/src/share/vm/opto/machnode.hpp	Fri Nov 15 12:01:00 2013 -0800
@@ -416,6 +416,8 @@
 
   int  constant_offset();
   int  constant_offset() const { return ((MachConstantNode*) this)->constant_offset(); }
+  // Unchecked version to avoid assertions in debug output.
+  int  constant_offset_unchecked() const;
 };
 
 //------------------------------MachUEPNode-----------------------------------