bearch: Use arch_register_req_is(req, ignore) instead of arch_irn_is_ignore(...)...
[libfirm] / ir / ir / irhooks.c
index 478f2e2..b32b91e 100644 (file)
@@ -21,7 +21,6 @@
  * @file
  * @brief    Generic hooks for various libFirm functions.
  * @author   Michael Beck
- * @version  $Id$
  */
 #include "config.h"
 
 
 #include "irhooks.h"
 
-/* the hooks */
 hook_entry_t *hooks[hook_last];
 
-/* register a hook */
 void register_hook(hook_type_t hook, hook_entry_t *entry)
 {
   /* check if a hook function is specified. It's a union, so no matter which one */
@@ -46,7 +43,6 @@ void register_hook(hook_type_t hook, hook_entry_t *entry)
   hooks[hook] = entry;
 }
 
-/* unregister a hook */
 void unregister_hook(hook_type_t hook, hook_entry_t *entry)
 {
   hook_entry_t *p;