diff options
author | David O'Brien <obrien@FreeBSD.org> | 1999-06-17 12:32:57 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-06-17 06:32:57 -0600 |
commit | 8a8f4bc10ef9eece1713becc0c6faf06e3662874 (patch) | |
tree | 998841561e17ec58581aee58b62177d86666c193 /gcc | |
parent | f4b7680b0f0fe2afedd57e8204c44c437b171075 (diff) | |
download | gcc-8a8f4bc10ef9eece1713becc0c6faf06e3662874.zip gcc-8a8f4bc10ef9eece1713becc0c6faf06e3662874.tar.gz gcc-8a8f4bc10ef9eece1713becc0c6faf06e3662874.tar.bz2 |
* i386/freebsd-elf.h (LINK_SPEC): Fix typo.
From-SVN: r27570
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/config/i386/freebsd-elf.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d6c5093..e09ddfe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Thu Jun 17 13:28:30 1999 David O'Brien <obrien@FreeBSD.org> + * i386/freebsd-elf.h (LINK_SPEC): Fix typo. + * i386/freebsd-elf.h (FUNCTION_PROFILER): labels are not needed and the reference to `mcount' was not correct for the ELF on FreeBSD. diff --git a/gcc/config/i386/freebsd-elf.h b/gcc/config/i386/freebsd-elf.h index eb58d74..e97d4ca 100644 --- a/gcc/config/i386/freebsd-elf.h +++ b/gcc/config/i386/freebsd-elf.h @@ -239,7 +239,7 @@ Boston, MA 02111-1307, USA. */ %{!static: \ %{rdynamic:-export-dynamic} \ %{!dynamic-linker:-dynamic-linker /usr/libexec/ld-elf.so.1}} \ - %{static:-Bstatic}}} \ + %{static:-Bstatic}} \ %{symbolic:-Bsymbolic}" /* A C statement to output to the stdio stream FILE an assembler |