aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-08-14 08:10:10 +0000
committerRichard Stallman <rms@gnu.org>1992-08-14 08:10:10 +0000
commitea80ee442747baf781c3233d15b150f4cd9e29db (patch)
tree8763d2d84047246af52f3e6525b99a09332e4c38 /gcc
parenta7f64d523d457467e70367ae9745fe3a5eec49d5 (diff)
downloadgcc-ea80ee442747baf781c3233d15b150f4cd9e29db.zip
gcc-ea80ee442747baf781c3233d15b150f4cd9e29db.tar.gz
gcc-ea80ee442747baf781c3233d15b150f4cd9e29db.tar.bz2
(assemble_variable): Change error message for unknown size.
From-SVN: r1822
Diffstat (limited to 'gcc')
-rw-r--r--gcc/varasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c
index 21efdfda..ff27b17 100644
--- a/gcc/varasm.c
+++ b/gcc/varasm.c
@@ -719,7 +719,7 @@ assemble_variable (decl, top_level, at_end)
{
error_with_file_and_line (DECL_SOURCE_FILE (decl),
DECL_SOURCE_LINE (decl),
- "storage size of static var `%s' isn't known",
+ "storage size of `%s' isn't known",
IDENTIFIER_POINTER (DECL_NAME (decl)));
return;
}