aboutsummaryrefslogtreecommitdiff
path: root/gcc/config/alpha
diff options
context:
space:
mode:
authorRichard Henderson <rth@gcc.gnu.org>2002-06-10 12:35:27 -0700
committerRichard Henderson <rth@gcc.gnu.org>2002-06-10 12:35:27 -0700
commite9f095867aed709d0ce9b6e4ee8067ab86da822f (patch)
tree8f5d6c62a7946452a3161099e0a7220ee3414ec7 /gcc/config/alpha
parent95b1627eb10e8741b0dd9a95a16240ab49c43785 (diff)
downloadgcc-e9f095867aed709d0ce9b6e4ee8067ab86da822f.zip
gcc-e9f095867aed709d0ce9b6e4ee8067ab86da822f.tar.gz
gcc-e9f095867aed709d0ce9b6e4ee8067ab86da822f.tar.bz2
Fix typo in comment.
From-SVN: r54450
Diffstat (limited to 'gcc/config/alpha')
-rw-r--r--gcc/config/alpha/alpha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
index bf45d76..c2a907c 100644
--- a/gcc/config/alpha/alpha.c
+++ b/gcc/config/alpha/alpha.c
@@ -980,7 +980,7 @@ direct_call_operand (op, mode)
}
/* Return true if OP is a LABEL_REF, or SYMBOL_REF or CONST referencing
- a variable known to be defined in this file. */
+ a (non-tls) variable known to be defined in this file. */
int
local_symbolic_operand (op, mode)
@@ -1014,7 +1014,7 @@ local_symbolic_operand (op, mode)
str = XSTR (op, 0);
- /* If @[VS], then alpha_encode_section_info sez it's local. */
+ /* If @[LS], then alpha_encode_section_info sez it's local. */
if (str[0] == '@' && (str[1] == 'L' || str[1] == 'S'))
return 1;