< prev index next >

src/share/vm/opto/cfgnode.cpp

Print this page

        

*** 39,48 **** --- 39,49 ---- #include "opto/mulnode.hpp" #include "opto/phaseX.hpp" #include "opto/regmask.hpp" #include "opto/runtime.hpp" #include "opto/subnode.hpp" + #include "utilities/vmError.hpp" // Portions of code courtesy of Clifford Click // Optimization - Graph Style
*** 871,881 **** } } // Verify a whole nest of phis rooted at this one. void PhiNode::verify_adr_type(bool recursive) const { ! if (is_error_reported()) return; // muzzle asserts when debugging an error if (Node::in_dump()) return; // muzzle asserts when printing assert((_type == Type::MEMORY) == (_adr_type != NULL), "adr_type for memory phis only"); if (!VerifyAliases) return; // verify thoroughly only if requested --- 872,882 ---- } } // Verify a whole nest of phis rooted at this one. void PhiNode::verify_adr_type(bool recursive) const { ! if (VMError::is_error_reported()) return; // muzzle asserts when debugging an error if (Node::in_dump()) return; // muzzle asserts when printing assert((_type == Type::MEMORY) == (_adr_type != NULL), "adr_type for memory phis only"); if (!VerifyAliases) return; // verify thoroughly only if requested
< prev index next >