create execution frequencies from profile data
[libfirm] / ir / be / be.h
index 4f9cc5a..420592d 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef _BE_MAIN_H
 #define _BE_MAIN_H
 
@@ -8,7 +7,7 @@
 #include "lower_dw.h"
 #include "dbginfo.h"
 
-#define LC_STOP_AND_RESET_TIMER(timer) lc_timer_stop(timer); lc_timer_reset(timer)
+#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
@@ -53,7 +52,7 @@ const backend_params *be_init(void);
 /**
  * Main interface to the frontend.
  */
-void be_main(FILE *file_handle);
+void be_main(FILE *file_handle, const char *asm_file_name);
 
 /** The type of the debug info retriever function. */
 typedef const char *(*retrieve_dbg_func)(const dbg_info *dbg, unsigned *line);