fixed debug output of unary x87 nodes
[libfirm] / ir / be / be.h
index 5d04946..f0895c4 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef _BE_MAIN_H
 #define _BE_MAIN_H
 
@@ -8,6 +7,8 @@
 #include "lower_dw.h"
 #include "dbginfo.h"
 
+#define LC_STOP_AND_RESET_TIMER(timer) do { lc_timer_stop(timer); lc_timer_reset(timer); } while(0)
+
 /**
  * This structure contains parameters that should be
  * propagated to the libFirm parameter set.
@@ -24,6 +25,10 @@ typedef struct backend_params {
 
        /** the architecture specific intrinsic function creator */
        create_intrinsic_fkt *arch_create_intrinsic_fkt;
+
+       /** the context parameter for the create intrinsic function */
+       void *create_intrinsic_ctx;
+
 } backend_params;
 
 /**