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/config | |
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/config')
-rw-r--r-- | gcc/config/ia64/ia64.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |