diff options
author | H.J. Lu <hjl@gcc.gnu.org> | 2009-07-07 07:25:58 -0700 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-07-07 07:25:58 -0700 |
commit | d575725b2554cd5d37eb686ace2b2c3fb947604e (patch) | |
tree | a4fc5ebdfe98e5b8337ca75afac9ba96494b3faf /gcc | |
parent | c236914646f38f11fc12e1a4a1957c2378c51171 (diff) | |
download | gcc-d575725b2554cd5d37eb686ace2b2c3fb947604e.zip gcc-d575725b2554cd5d37eb686ace2b2c3fb947604e.tar.gz gcc-d575725b2554cd5d37eb686ace2b2c3fb947604e.tar.bz2 |
ia64.c (ia64_handle_model_attribute): Remove an extra 'decl' for error_at.
2009-07-07 H.J. Lu <hongjiu.lu@intel.com>
* config/ia64/ia64.c (ia64_handle_model_attribute): Remove
an extra 'decl' for error_at.
From-SVN: r149330
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config/ia64/ia64.c | 4 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d659986..4222500 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-07-07 H.J. Lu <hongjiu.lu@intel.com> + + * config/ia64/ia64.c (ia64_handle_model_attribute): Remove + an extra 'decl' for error_at. + 2009-07-07 Jakub Jelinek <jakub@redhat.com> PR middle-end/40669 @@ -7,8 +12,8 @@ 2009-07-07 Olivier Hainque <hainque@adacore.com> - * config/alpha/t-osf4 (SHLIB_LINK): Do not hide the dummy weak - pthread symbols. + * config/alpha/t-osf4 (SHLIB_LINK): Do not hide the dummy weak + pthread symbols. 2009-07-07 Basile Starynkevitch <basile@starynkevitch.net> diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index b863fd3..b2e950e5 100644 --- a/gcc/config/ia64/ia64.c +++ b/gcc/config/ia64/ia64.c @@ -609,8 +609,8 @@ ia64_handle_model_attribute (tree *node, tree name, tree args, case FUNCTION_DECL: error_at (DECL_SOURCE_LOCATION (decl), - "address area attribute cannot be specified for functions", - decl); + "address area attribute cannot be specified for " + "functions"); *no_add_attrs = true; break; |