aboutsummaryrefslogtreecommitdiff
path: root/gcc/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/df.c')
-rw-r--r--gcc/df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/df.c b/gcc/df.c
index 4228e0d..994f15b 100644
--- a/gcc/df.c
+++ b/gcc/df.c
@@ -155,6 +155,8 @@ Perhaps there should be a bitmap argument to df_analyse to specify
#include "config.h"
#include "system.h"
+#include "coretypes.h"
+#include "tm.h"
#include "rtl.h"
#include "tm_p.h"
#include "insn-config.h"
@@ -784,7 +786,6 @@ df_ref_create (df, reg, loc, insn, ref_type, ref_flags)
enum df_ref_flags ref_flags;
{
struct ref *this_ref;
- unsigned int uid;
this_ref = (struct ref *) obstack_alloc (&df_ref_obstack,
sizeof (*this_ref));
@@ -794,7 +795,6 @@ df_ref_create (df, reg, loc, insn, ref_type, ref_flags)
DF_REF_CHAIN (this_ref) = 0;
DF_REF_TYPE (this_ref) = ref_type;
DF_REF_FLAGS (this_ref) = ref_flags;
- uid = INSN_UID (insn);
if (ref_type == DF_REF_REG_DEF)
{