Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. from /home/epuser/ajayku/final_test/qemu/qemu-1.6.0.ajay/exec.c:29:
  2. `/home/epuser/ajayku/final_test/qemu/qemu-1.6.0.ajay/tcg/tcg-op.h:27:1: error: expected` `identifier before ‘int’`
  3.  
  4. int gen_new_label(void);
  5.  
  6. static inline void tcg_gen_op0(TCGOpcode opc)
  7.  
  8. {
  9. *tcg_ctx.gen_opc_ptr++ = opc;
  10. }
  11.  
  12. static inline void tcg_gen_op1_i32(TCGOpcode opc, TCGv_i32 arg1)
  13. {
  14. *tcg_ctx.gen_opc_ptr++ = opc;
  15. *tcg_ctx.gen_opparam_ptr++ = GET_TCGV_I32(arg1);
  16. }
  17.  
  18. typedef enum {
  19. #define DEF(name, oargs, iargs, cargs, flags) INDEX_op_ ## name,
  20. #include "tcg-op.h"
  21. #undef DEF
  22. NB_OPS,
  23. } TCGOpcode;
  24.  
  25. #include "tcg-op.h"
  26. #define DEF(name, oargs, iargs, cargs, flags) INDEX_op_ ## name,
  27. typedef enum {
  28. DEF(ARG1, ARG2, ARG3, ARG4, ARG5)
  29. NB_OPS,
  30. } TCGOpcode;
  31. #undef DEF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement