diff options
Diffstat (limited to 'gcc/df.c')
-rw-r--r-- | gcc/df.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) { |