Revision a9751609 tcg/tcg.h

b/tcg/tcg.h
47 47
#error unsupported
48 48
#endif
49 49

  
50
enum {
50
typedef enum TCGOpcode {
51 51
#define DEF(s, n, copy_size) INDEX_op_ ## s,
52 52
#include "tcg-opc.h"
53 53
#undef DEF
54 54
    NB_OPS,
55
};
55
} TCGOpcode;
56 56

  
57 57
#define tcg_regset_clear(d) (d) = 0
58 58
#define tcg_regset_set(d, s) (d) = (s)
......
418 418
} TCGOpDef;
419 419
        
420 420
typedef struct TCGTargetOpDef {
421
    int op;
421
    TCGOpcode op;
422 422
    const char *args_ct_str[TCG_MAX_OP_ARGS];
423 423
} TCGTargetOpDef;
424 424

  

Also available in: Unified diff