diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2003-03-15 19:54:10 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-03-15 19:54:10 +0000 |
commit | d2184e79be1ae8498309d3dc99334e4c39099769 (patch) | |
tree | e7f396c4a9ab0711d7638802c2dab55e302b10ee /gcc/doc/interface.texi | |
parent | de6a669be0c301912d3ff1b00aed3bf0e0a115f2 (diff) | |
download | gcc-d2184e79be1ae8498309d3dc99334e4c39099769.zip gcc-d2184e79be1ae8498309d3dc99334e4c39099769.tar.gz gcc-d2184e79be1ae8498309d3dc99334e4c39099769.tar.bz2 |
Makefile.in (TEXI_GCCINT_FILES): Add libgcc.texi.
2003-03-15 Aldy Hernandez <aldyh@redhat.com>
Zack Weinberg <zack@codesourcery.com>
* Makefile.in (TEXI_GCCINT_FILES): Add libgcc.texi.
* doc/libgcc.texi: New file.
* doc/interface.texi: Delete paragraph about libgcc interface.
* doc/gccint.texi: Add libgcc menu entry and @include libgcc.texi.
From-SVN: r64416
Diffstat (limited to 'gcc/doc/interface.texi')
-rw-r--r-- | gcc/doc/interface.texi | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/doc/interface.texi b/gcc/doc/interface.texi index c554434..d2210e9 100644 --- a/gcc/doc/interface.texi +++ b/gcc/doc/interface.texi @@ -83,20 +83,3 @@ go in a register: @dots{} @} @end example - -@cindex arithmetic libraries -@cindex math libraries -@opindex msoft-float -Code compiled with GCC may call certain library routines. Most of -them handle arithmetic for which there are no instructions. This -includes multiply and divide on some machines, and floating point -operations on any machine for which floating point support is disabled -with @option{-msoft-float}. Some standard parts of the C library, such as -@code{bcopy} or @code{memcpy}, are also called automatically. The usual -function call interface is used for calling the library routines. - -Some of these routines can be defined in mostly machine-independent C; -they appear in @file{libgcc2.c}. Others must be hand-written in -assembly language for each processor. Wherever they are defined, they -are compiled into the support library, @file{libgcc.a}, which is -automatically searched when you link programs with GCC@. |