use the correct mode for DIV
[libfirm] / ir / be / be.h
index 5d04946..4f9cc5a 100644 (file)
@@ -8,6 +8,8 @@
 #include "lower_dw.h"
 #include "dbginfo.h"
 
+#define LC_STOP_AND_RESET_TIMER(timer) lc_timer_stop(timer); lc_timer_reset(timer)
+
 /**
  * This structure contains parameters that should be
  * propagated to the libFirm parameter set.
@@ -24,6 +26,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;
 
 /**