#ifndef _COMPARE_H_ #define _COMPARE_H_ int compare(reg& a, reg& b); #define COMP_A_GT_B 1 #define COMP_A_EQ_B 2 #define COMP_A_LT_B 3 #define COMP_NOCOMP 4 #define COMP_NAN 0x40 #define COMP_SNAN 0x80 #endif