hotspot/src/share/vm/adlc/adlc.hpp
changeset 2129 e810a33b5c67
parent 775 d9c9b9cd55fb
child 2257 d8e6e11e7f32
equal deleted inserted replaced
2128:c08c265de2f5 2129:e810a33b5c67
    77 #define uint32 unsigned int
    77 #define uint32 unsigned int
    78 #define uint   unsigned int
    78 #define uint   unsigned int
    79 
    79 
    80 // Macros
    80 // Macros
    81 // Debugging note:  Put a breakpoint on "abort".
    81 // Debugging note:  Put a breakpoint on "abort".
       
    82 #undef assert
    82 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}
    83 #define assert(cond, msg) { if (!(cond)) { fprintf(stderr, "assert fails %s %d: %s\n", __FILE__, __LINE__, msg); abort(); }}
    83 #define max(a, b)   (((a)>(b)) ? (a) : (b))
    84 #define max(a, b)   (((a)>(b)) ? (a) : (b))
    84 
    85 
    85 // VM components
    86 // VM components
    86 #include "opcodes.hpp"
    87 #include "opcodes.hpp"