diff options
author | Dehao Chen <dehao@google.com> | 2014-10-22 17:11:17 +0000 |
---|---|---|
committer | Dehao Chen <dehao@gcc.gnu.org> | 2014-10-22 17:11:17 +0000 |
commit | 3d790fd87092c08ef3cedc2c928abeae02a5e6c9 (patch) | |
tree | 4485aa169d6f81e21a16d0979e4dbe814d778ceb /gcc | |
parent | 417dfefbdbc78eef2b6e9a2f70f153547c73b6e3 (diff) | |
download | gcc-3d790fd87092c08ef3cedc2c928abeae02a5e6c9.zip gcc-3d790fd87092c08ef3cedc2c928abeae02a5e6c9.tar.gz gcc-3d790fd87092c08ef3cedc2c928abeae02a5e6c9.tar.bz2 |
auto-profile.c: Change order of header files.
gcc/ChangeLog:
2014-10-22 Dehao Chen <dehao@google.com>
* auto-profile.c: Change order of header files.
From-SVN: r216563
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/auto-profile.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3687418..9319763 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-10-22 Dehao Chen <dehao@google.com> + + * auto-profile.c: Change order of header files. + 2014-10-22 Guozhi Wei <carrot@google.com> PR tree-optimization/63530 diff --git a/gcc/auto-profile.c b/gcc/auto-profile.c index 24d7126..9838c23 100644 --- a/gcc/auto-profile.c +++ b/gcc/auto-profile.c @@ -18,12 +18,13 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ +#include "config.h" +#include "system.h" + #include <string.h> #include <map> #include <set> -#include "config.h" -#include "system.h" #include "coretypes.h" #include "tree.h" #include "tree-pass.h" |