summaryrefslogtreecommitdiff
path: root/gcc/dummy-conditions.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/dummy-conditions.c')
-rw-r--r--gcc/dummy-conditions.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/gcc/dummy-conditions.c b/gcc/dummy-conditions.c
index eb3fb417314..95db257bd09 100644
--- a/gcc/dummy-conditions.c
+++ b/gcc/dummy-conditions.c
@@ -1,5 +1,5 @@
/* Support for calculating constant conditions.
- Copyright (C) 2002 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2004 Free Software Foundation, Inc.
This file is part of GCC.
@@ -18,16 +18,22 @@
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#include "bconfig.h"
-#include "system.h"
-#include "coretypes.h"
-#include "tm.h"
-#include "gensupport.h"
+#include <stddef.h> /* for size_t */
/* MD generators that are run before insn-conditions.c exists should
link against this file instead. Currently that is genconditions
and genconstants. */
+/* In order to avoid dragging in all the headers that are needed to
+ declare things that gensupport.h uses, we duplicate the declaration
+ of struct c_test here. (In particular we do not want to have to
+ include tm.h nor rtl.h in this file.) */
+struct c_test
+{
+ const char *expr;
+ int value;
+};
+
/* Empty conditions table to prevent link errors. */
const struct c_test insn_conditions[1] = { { 0, 0 } };
const size_t n_insn_conditions = 0;