comparison gcc/tree-ssa-threadupdate.c @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents b7f97abdc517
children 04ced10e8804
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* Thread edges through blocks and update the control flow and SSA graphs. 1 /* Thread edges through blocks and update the control flow and SSA graphs.
2 Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, 2 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Free Software Foundation,
3 Inc. 3 Inc.
4 4
5 This file is part of GCC. 5 This file is part of GCC.
6 6
7 GCC is free software; you can redistribute it and/or modify 7 GCC is free software; you can redistribute it and/or modify
25 #include "tree.h" 25 #include "tree.h"
26 #include "flags.h" 26 #include "flags.h"
27 #include "tm_p.h" 27 #include "tm_p.h"
28 #include "basic-block.h" 28 #include "basic-block.h"
29 #include "output.h" 29 #include "output.h"
30 #include "expr.h"
31 #include "function.h" 30 #include "function.h"
32 #include "diagnostic.h"
33 #include "tree-flow.h" 31 #include "tree-flow.h"
34 #include "tree-dump.h" 32 #include "tree-dump.h"
35 #include "tree-pass.h" 33 #include "tree-pass.h"
36 #include "cfgloop.h" 34 #include "cfgloop.h"
37 35