give Bad nodes a mode
[libfirm] / ir / be / bemodule.h
index 95e6911..db84248 100644 (file)
  * Currently you have to add modules manually in the list in bemodule.c.
  * However future extensions might allow them to be automatically discovered
  * when they are marked with BE_REGISTER_MODULE_CONSTRUCTOR
+ *
+ * Add this before your constructor as it will declare the function
  */
-#define BE_REGISTER_MODULE_CONSTRUCTOR(func)
+#define BE_REGISTER_MODULE_CONSTRUCTOR(func)         void func(void);
 
 /**
  * Mark a function as module destructor.
+ *
+ * Add this before your constructor as it will declare the function
  */
-#define BE_REGISTER_MODULE_DESTRUCTOR(func)
+#define BE_REGISTER_MODULE_DESTRUCTOR(func)          void func(void);
 
 /**
  * Call all module constructors