comparison gcc/lto-compress.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 /* LTO IL compression streams. 1 /* LTO IL compression streams.
2 2
3 Copyright 2009 Free Software Foundation, Inc. 3 Copyright 2009, 2010 Free Software Foundation, Inc.
4 Contributed by Simon Baldwin <simonb@google.com> 4 Contributed by Simon Baldwin <simonb@google.com>
5 5
6 This file is part of GCC. 6 This file is part of GCC.
7 7
8 GCC is free software; you can redistribute it and/or modify it 8 GCC is free software; you can redistribute it and/or modify it
26 zlib.h needs to be included after, rather than before, config.h and 26 zlib.h needs to be included after, rather than before, config.h and
27 system.h. */ 27 system.h. */
28 #include <zlib.h> 28 #include <zlib.h>
29 #include "coretypes.h" 29 #include "coretypes.h"
30 #include "tree.h" 30 #include "tree.h"
31 #include "diagnostic.h" 31 #include "diagnostic-core.h"
32 #include "toplev.h"
33 #include "langhooks.h" 32 #include "langhooks.h"
34 #include "lto-streamer.h" 33 #include "lto-streamer.h"
35 #include "lto-compress.h" 34 #include "lto-compress.h"
36 35
37 /* Compression stream structure, holds the flush callback and opaque token, 36 /* Compression stream structure, holds the flush callback and opaque token,