diff options
author | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-05 16:42:25 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-09-05 16:42:25 +0000 |
commit | f5a8be8e53328745151d5d6db8fd4399c6f1b878 (patch) | |
tree | e85e8535e1a54958701279232901714b1dc743a5 /gcc | |
parent | b9096844c1ef68031ce8c52fe25cf86f1e555873 (diff) | |
download | gcc-f5a8be8e53328745151d5d6db8fd4399c6f1b878.zip gcc-f5a8be8e53328745151d5d6db8fd4399c6f1b878.tar.gz gcc-f5a8be8e53328745151d5d6db8fd4399c6f1b878.tar.bz2 |
Fix typo in last change.
From-SVN: r29128
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/integrate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/integrate.c b/gcc/integrate.c index 0092f8f..6bcdadb 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -149,7 +149,7 @@ function_cannot_inline_p (fndecl) return N_("function with nested functions cannot be inline"); if (forced_labels) - return "function with label addresses used in initializers cannot inline"; + return N_("function with label addresses used in initializers cannot inline"); if (current_function_cannot_inline) return current_function_cannot_inline; |