diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-01 06:14:40 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-06-01 06:14:40 +0000 |
commit | fed1769821d234adee6add59bbb97dd1c83ef232 (patch) | |
tree | f2cf22c041a236c0b6a8c34b163e91103660c904 /gcc/c-family | |
parent | 8e21b71a4f55ebda4156b75b62a9380c082ee5d4 (diff) | |
download | gcc-fed1769821d234adee6add59bbb97dd1c83ef232.tar.gz |
2012-06-01 Basile Starynkevitch <basile@starynkevitch.net>
MELT branch merged with trunk rev 188095 using svnmerge
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@188099 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-family')
-rw-r--r-- | gcc/c-family/ChangeLog | 13 | ||||
-rw-r--r-- | gcc/c-family/c-ada-spec.c | 1 | ||||
-rw-r--r-- | gcc/c-family/c-common.c | 2 | ||||
-rw-r--r-- | gcc/c-family/c-common.h | 2 | ||||
-rw-r--r-- | gcc/c-family/c-lex.c | 2 | ||||
-rw-r--r-- | gcc/c-family/c-pch.c | 2 | ||||
-rw-r--r-- | gcc/c-family/c-semantics.c | 1 |
7 files changed, 16 insertions, 7 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index 650302b0e93..a5b9c1f8660 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,16 @@ +2012-05-31 Steven Bosscher <steven@gcc.gnu.org> + + * c-ada-spec.c: Do not include output.h. + * c-semantics.c: Likewise. + +2012-05-29 Joseph Myers <joseph@codesourcery.com> + + * c-common.c: Fix typo. + +2012-05-29 Michael Matz <matz@suse.de> + + * c-common.h (c_expand_decl): Remove prototype. + 2012-05-29 Manuel López-Ibáñez <manu@gcc.gnu.org> * c.opt (Wmissing-braces): Use LangEnabledBy(C ObjC,Wall). diff --git a/gcc/c-family/c-ada-spec.c b/gcc/c-family/c-ada-spec.c index c6666675ccc..8946624be23 100644 --- a/gcc/c-family/c-ada-spec.c +++ b/gcc/c-family/c-ada-spec.c @@ -25,7 +25,6 @@ along with GCC; see the file COPYING3. If not see #include "tm.h" #include "tree.h" #include "tree-pass.h" /* For TDI_ada and friends. */ -#include "output.h" #include "c-ada-spec.h" #include "cpplib.h" #include "c-pragma.h" diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index f745365da1a..3a1bbd25347 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -3960,7 +3960,7 @@ pointer_int_sum (location_t loc, enum tree_code resultcode, /* Replace the integer argument with a suitable product by the object size. Do this multiplication as signed, then convert to the appropriate type - for the pointer operation and disregard an overflow that occured only + for the pointer operation and disregard an overflow that occurred only because of the sign-extension change in the latter conversion. */ { tree t = build_binary_op (loc, diff --git a/gcc/c-family/c-common.h b/gcc/c-family/c-common.h index c3d679adcbc..c8e6ce19577 100644 --- a/gcc/c-family/c-common.h +++ b/gcc/c-family/c-common.h @@ -544,8 +544,6 @@ extern tree build_modify_expr (location_t, tree, tree, enum tree_code, location_t, tree, tree); extern tree build_indirect_ref (location_t, tree, ref_operator); -extern int c_expand_decl (tree); - extern int field_decl_cmp (const void *, const void *); extern void resort_sorted_fields (void *, void *, gt_pointer_operator, void *); diff --git a/gcc/c-family/c-lex.c b/gcc/c-family/c-lex.c index b122dab3086..d9bd823fde2 100644 --- a/gcc/c-family/c-lex.c +++ b/gcc/c-family/c-lex.c @@ -26,7 +26,7 @@ along with GCC; see the file COPYING3. If not see #include "tree.h" #include "input.h" -#include "output.h" +#include "output.h" /* for asm_out_file */ #include "c-common.h" #include "flags.h" #include "timevar.h" diff --git a/gcc/c-family/c-pch.c b/gcc/c-family/c-pch.c index 8d34e0949d5..091f58a6cff 100644 --- a/gcc/c-family/c-pch.c +++ b/gcc/c-family/c-pch.c @@ -26,7 +26,7 @@ along with GCC; see the file COPYING3. If not see #include "tree.h" #include "flags.h" #include "c-common.h" -#include "output.h" +#include "output.h" /* for asm_out_file */ #include "debug.h" #include "c-pragma.h" #include "ggc.h" diff --git a/gcc/c-family/c-semantics.c b/gcc/c-family/c-semantics.c index cb0f2be314e..1a21ec17f83 100644 --- a/gcc/c-family/c-semantics.c +++ b/gcc/c-family/c-semantics.c @@ -28,7 +28,6 @@ along with GCC; see the file COPYING3. If not see #include "splay-tree.h" #include "c-common.h" #include "flags.h" -#include "output.h" #include "tree-iterator.h" /* Create an empty statement tree rooted at T. */ |