comparison gcc/tree-call-cdce.c @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents 77e2b8dfacca
children f6334be47118
comparison
equal deleted inserted replaced
56:3c8a44c06a95 63:b7f97abdc517
1 /* Conditional Dead Call Elimination pass for the GNU compiler. 1 /* Conditional Dead Call Elimination pass for the GNU compiler.
2 Copyright (C) 2008 2 Copyright (C) 2008, 2009, 2010
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 Contributed by Xinliang David Li <davidxl@google.com> 4 Contributed by Xinliang David Li <davidxl@google.com>
5 5
6 This file is part of GCC. 6 This file is part of GCC.
7 7
21 21
22 #include "config.h" 22 #include "config.h"
23 #include "system.h" 23 #include "system.h"
24 #include "coretypes.h" 24 #include "coretypes.h"
25 #include "tm.h" 25 #include "tm.h"
26 #include "ggc.h"
27
28 /* These RTL headers are needed for basic-block.h. */
29 #include "rtl.h"
30 #include "tm_p.h"
31 #include "hard-reg-set.h"
32 #include "obstack.h"
33 #include "basic-block.h" 26 #include "basic-block.h"
34
35 #include "tree.h" 27 #include "tree.h"
36 #include "diagnostic.h" 28 #include "diagnostic.h"
29 #include "gimple-pretty-print.h"
37 #include "tree-flow.h" 30 #include "tree-flow.h"
38 #include "gimple.h" 31 #include "gimple.h"
39 #include "tree-dump.h" 32 #include "tree-dump.h"
40 #include "tree-pass.h" 33 #include "tree-pass.h"
41 #include "timevar.h" 34 #include "timevar.h"