Moved unused macro from .h to _t.h
[libfirm] / ir / tv / tv_t.h
1 /* Declarations for Target Values.
2    Copyright (C) 1995, 1996 Christian von Roques */
3
4 /* $Id$ */
5
6 #ifndef _TV_T_H_
7 #define _TV_T_H_
8
9 # include "tv.h"
10 # include "misc.h"
11
12 int tarval_print (XP_PAR1, const xprintf_info *, XP_PARN);
13
14
15 #ifdef NDEBUG
16 #define TARVAL_VRFY(val) ((void)0)
17 #else
18 #define TARVAL_VRFY(val) _tarval_vrfy ((val))
19 extern void _tarval_vrfy (const tarval *);
20 #endif
21
22 #ifdef STATS
23 void tarval_stats (void);
24 #else
25 #define tarval_stats() ((void)0)
26 #endif
27
28 #endif /* _TV_T_H_ */