Remove unnecessary cast.
[cparser] / ast_t.h
diff --git a/ast_t.h b/ast_t.h
index 2e389c0..15d8735 100644 (file)
--- a/ast_t.h
+++ b/ast_t.h
@@ -29,7 +29,6 @@
 #include "type.h"
 #include "entity_t.h"
 #include "adt/obst.h"
-#include "target_value.h"
 
 /** The AST obstack contains all data that must stay in the AST. */
 extern struct obstack ast_obstack;
@@ -266,7 +265,7 @@ struct literal_expression_t {
        symbol_t          *suffix;
 
        /* ast2firm data */
-       tarval            *target_value;
+       ir_tarval         *target_value;
 };
 
 struct string_literal_expression_t {