Do not describe -std=c11 etc. as experimental in c.opt help text.
[gcc.git] / gcc / postreload-gcse.c
index a1ffdb4d632c78bf1d2f535ec42f265458d2ee18..136e84b3714af34d8fbfef01a78fd2f3da519208 100644 (file)
@@ -20,25 +20,20 @@ along with GCC; see the file COPYING3.  If not see
 #include "config.h"
 #include "system.h"
 #include "coretypes.h"
-#include "tm.h"
+#include "backend.h"
+#include "predict.h"
+#include "tree.h"
+#include "rtl.h"
+#include "df.h"
 #include "diagnostic-core.h"
 
-#include "rtl.h"
 #include "alias.h"
-#include "symtab.h"
-#include "tree.h"
 #include "tm_p.h"
 #include "regs.h"
-#include "hard-reg-set.h"
 #include "flags.h"
 #include "insn-config.h"
 #include "recog.h"
-#include "predict.h"
-#include "function.h"
-#include "dominance.h"
-#include "cfg.h"
 #include "cfgrtl.h"
-#include "basic-block.h"
 #include "profile.h"
 #include "expmed.h"
 #include "dojump.h"
@@ -50,12 +45,10 @@ along with GCC; see the file COPYING3.  If not see
 #include "expr.h"
 #include "except.h"
 #include "intl.h"
-#include "obstack.h"
 #include "params.h"
 #include "target.h"
 #include "tree-pass.h"
 #include "dbgcnt.h"
-#include "df.h"
 #include "gcse-common.h"
 
 /* The following code implements gcse after reload, the purpose of this