Rate EXPR_REFERENCE (variable uses) with error type as EXPR_CLASS_ERROR instead of...
[cparser] / ast2firm.h
index 2314ab3..03e59e8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -32,4 +32,8 @@ void exit_ast2firm(void);
 ir_mode *get_atomic_mode(atomic_type_kind_t kind);
 ir_type *get_ir_type(type_t *type);
 
+typedef ident* (*create_ld_ident_func)(entity_t *entity);
+
+void set_create_ld_ident(create_ld_ident_func func);
+
 #endif