diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1997-01-21 22:26:06 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1997-01-21 22:26:06 +0000 |
commit | 2e4eb9b08e77c48ce9aed8ce0403ce375ad8c686 (patch) | |
tree | 7e3f91a35c2adc82d37a6dd64a99f45d80e8b1fd /gcc | |
parent | de22184bb226fedca7b991f096b8d8befb9aba6f (diff) | |
download | gcc-2e4eb9b08e77c48ce9aed8ce0403ce375ad8c686.zip gcc-2e4eb9b08e77c48ce9aed8ce0403ce375ad8c686.tar.gz gcc-2e4eb9b08e77c48ce9aed8ce0403ce375ad8c686.tar.bz2 |
Fix handling of vt if -mminimal-toc
From-SVN: r13543
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index d5e1210..f021ec3 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -4104,11 +4104,11 @@ output_toc (file, x, labelno) else abort (); + STRIP_NAME_ENCODING (real_name, name); if (TARGET_MINIMAL_TOC) fputs ("\t.long ", file); else { - STRIP_NAME_ENCODING (real_name, name); fprintf (file, "\t.tc %s", real_name); if (offset < 0) |