add missing dbg hooks for boolean simplifications
[libfirm] / include / libfirm / be.h
index 032130e..202162a 100644 (file)
 #ifndef FIRM_BE_MAIN_H
 #define FIRM_BE_MAIN_H
 
+#include <stdio.h>
 #include "irarch.h"
 #include "archop.h"
 #include "lowering.h"
 
-#include <libcore/lc_timing.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.
@@ -81,9 +78,9 @@ const backend_params *be_init(void);
 /**
  * Main interface to the frontend.
  */
-void be_main(FILE *file_handle, const char *cup_name);
+void be_main(FILE *output, const char *compilation_unit_name);
 
 typedef struct be_main_env_t be_main_env_t;
 typedef struct be_options_t  be_options_t;
 
-#endif /* FIRM_BE_MAIN_H */
+#endif