hotspot/src/share/vm/ci/ciUtilities.hpp
changeset 4571 80b553bddc26
parent 1 489c9b5090e2
child 5547 f4b087cbb361
equal deleted inserted replaced
4569:f372ea9e5ed4 4571:80b553bddc26
    77 // Redefine this later.
    77 // Redefine this later.
    78 #define KILL_COMPILE_ON_FATAL_(result)           \
    78 #define KILL_COMPILE_ON_FATAL_(result)           \
    79   THREAD);                                       \
    79   THREAD);                                       \
    80   if (HAS_PENDING_EXCEPTION) {                   \
    80   if (HAS_PENDING_EXCEPTION) {                   \
    81     if (PENDING_EXCEPTION->klass() ==            \
    81     if (PENDING_EXCEPTION->klass() ==            \
    82         SystemDictionary::threaddeath_klass()) { \
    82         SystemDictionary::ThreadDeath_klass()) { \
    83       /* Kill the compilation. */                \
    83       /* Kill the compilation. */                \
    84       fatal("unhandled ci exception");           \
    84       fatal("unhandled ci exception");           \
    85       return (result);                           \
    85       return (result);                           \
    86     }                                            \
    86     }                                            \
    87     CLEAR_PENDING_EXCEPTION;                     \
    87     CLEAR_PENDING_EXCEPTION;                     \