diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-04 12:54:49 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-12-04 12:54:49 +0000 |
commit | bdff91a14bf8e5d18b1eb47bb529894482065762 (patch) | |
tree | 4515b21fe5d3e25b4d5c8f907d3e78834e1e40ac /gcc/objc | |
parent | 0158370253d4aef042c4d67b2c0278ded58d83fd (diff) | |
parent | 8192796762b4781de57ce2a6c104a71dcbd874e3 (diff) | |
download | gcc-bdff91a14bf8e5d18b1eb47bb529894482065762.tar.gz |
Merge with trunk.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@205668 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index 000ba9e71b1..6ec2ef5fa70 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,7 @@ +2013-11-22 Andrew MacLeod <amacleod@redhat.com> + + * objc/objc-act.c: Add required include files from gimple.h. + 2013-11-18 Richard Sandiford <rdsandiford@googlemail.com> * objc-encoding.c: Replace tree_low_cst (..., 1) with tree_to_uhwi diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 2c152c7e312..0cf93d4002c 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -45,7 +45,6 @@ along with GCC; see the file COPYING3. If not see #include "input.h" #include "function.h" #include "toplev.h" -#include "ggc.h" #include "debug.h" #include "c-family/c-target.h" #include "diagnostic-core.h" @@ -64,7 +63,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-pretty-print.h" /* For enum gimplify_status */ -#include "gimple.h" +#include "gimple-expr.h" #include "gimplify.h" /* For encode_method_prototype(). */ |