diff options
author | Martin Liska <mliska@suse.cz> | 2022-11-07 13:23:41 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-11-09 09:00:35 +0100 |
commit | 54ca4eef58661a7d7a511e2bbbe309bde1732abf (patch) | |
tree | 4f9067b036a4e7c08d0d483246cb5ab5a0d60d41 /gcc/doc/implement-cxx.texi | |
parent | 564a805f9f08b4346a854ab8dca2e5b561a7a28e (diff) | |
download | gcc-54ca4eef58661a7d7a511e2bbbe309bde1732abf.zip gcc-54ca4eef58661a7d7a511e2bbbe309bde1732abf.tar.gz gcc-54ca4eef58661a7d7a511e2bbbe309bde1732abf.tar.bz2 |
sphinx: remove texinfo files
gcc/d/ChangeLog:
* gdc.texi: Removed.
gcc/ChangeLog:
* doc/analyzer.texi: Removed.
* doc/avr-mmcu.texi: Removed.
* doc/bugreport.texi: Removed.
* doc/cfg.texi: Removed.
* doc/collect2.texi: Removed.
* doc/compat.texi: Removed.
* doc/configfiles.texi: Removed.
* doc/configterms.texi: Removed.
* doc/contrib.texi: Removed.
* doc/contribute.texi: Removed.
* doc/cpp.texi: Removed.
* doc/cppdiropts.texi: Removed.
* doc/cppenv.texi: Removed.
* doc/cppinternals.texi: Removed.
* doc/cppopts.texi: Removed.
* doc/cppwarnopts.texi: Removed.
* doc/extend.texi: Removed.
* doc/fragments.texi: Removed.
* doc/frontends.texi: Removed.
* doc/gcc.texi: Removed.
* doc/gccint.texi: Removed.
* doc/gcov-dump.texi: Removed.
* doc/gcov-tool.texi: Removed.
* doc/gcov.texi: Removed.
* doc/generic.texi: Removed.
* doc/gimple.texi: Removed.
* doc/gnu.texi: Removed.
* doc/gty.texi: Removed.
* doc/headerdirs.texi: Removed.
* doc/hostconfig.texi: Removed.
* doc/implement-c.texi: Removed.
* doc/implement-cxx.texi: Removed.
* doc/include/fdl.texi: Removed.
* doc/include/funding.texi: Removed.
* doc/include/gcc-common.texi: Removed.
* doc/include/gpl_v3.texi: Removed.
* doc/install.texi: Removed.
* doc/interface.texi: Removed.
* doc/invoke.texi: Removed.
* doc/languages.texi: Removed.
* doc/libgcc.texi: Removed.
* doc/loop.texi: Removed.
* doc/lto-dump.texi: Removed.
* doc/lto.texi: Removed.
* doc/makefile.texi: Removed.
* doc/match-and-simplify.texi: Removed.
* doc/md.texi: Removed.
* doc/objc.texi: Removed.
* doc/optinfo.texi: Removed.
* doc/options.texi: Removed.
* doc/passes.texi: Removed.
* doc/plugins.texi: Removed.
* doc/poly-int.texi: Removed.
* doc/portability.texi: Removed.
* doc/rtl.texi: Removed.
* doc/service.texi: Removed.
* doc/sourcebuild.texi: Removed.
* doc/standards.texi: Removed.
* doc/tm.texi: Removed.
* doc/tree-ssa.texi: Removed.
* doc/trouble.texi: Removed.
* doc/ux.texi: Removed.
* doc/tm.texi.in: Removed.
gcc/fortran/ChangeLog:
* gfc-internals.texi: Removed.
* gfortran.texi: Removed.
* intrinsic.texi: Removed.
* invoke.texi: Removed.
gcc/go/ChangeLog:
* gccgo.texi: Removed.
libgomp/ChangeLog:
* libgomp.texi: Removed.
libiberty/ChangeLog:
* at-file.texi: Removed.
* copying-lib.texi: Removed.
* functions.texi: Removed.
* libiberty.texi: Removed.
* obstacks.texi: Removed.
libitm/ChangeLog:
* libitm.texi: Removed.
libquadmath/ChangeLog:
* libquadmath.texi: Removed.
Diffstat (limited to 'gcc/doc/implement-cxx.texi')
-rw-r--r-- | gcc/doc/implement-cxx.texi | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/gcc/doc/implement-cxx.texi b/gcc/doc/implement-cxx.texi deleted file mode 100644 index 1eee18c..0000000 --- a/gcc/doc/implement-cxx.texi +++ /dev/null @@ -1,62 +0,0 @@ -@c Copyright (C) 2009-2022 Free Software Foundation, Inc. -@c This is part of the GCC manual. -@c For copying conditions, see the file gcc.texi. - -@node C++ Implementation -@chapter C++ Implementation-Defined Behavior -@cindex implementation-defined behavior, C++ language - -A conforming implementation of ISO C++ is required to document its -choice of behavior in each of the areas that are designated -``implementation defined''. The following lists all such areas, -along with the section numbers from the ISO/IEC 14882:1998 and ISO/IEC -14882:2003 standards. Some areas are only implementation-defined in -one version of the standard. - -Some choices depend on the externally determined ABI for the platform -(including standard character encodings) which GCC follows; these are -listed as ``determined by ABI'' below. @xref{Compatibility, , Binary -Compatibility}, and @uref{https://gcc.gnu.org/readings.html}. Some -choices are documented in the preprocessor manual. -@xref{Implementation-defined behavior, , Implementation-defined -behavior, cpp, The C Preprocessor}. Some choices are documented in -the corresponding document for the C language. @xref{C -Implementation}. Some choices are made by the library and operating -system (or other environment when compiling for a freestanding -environment); refer to their documentation for details. - -@menu -* Conditionally-supported behavior:: -* Exception handling:: -@end menu - -@node Conditionally-supported behavior -@section Conditionally-Supported Behavior - -@cite{Each implementation shall include documentation that identifies -all conditionally-supported constructs that it does not support (C++0x -1.4).} - -@itemize @bullet -@item -@cite{Whether an argument of class type with a non-trivial copy -constructor or destructor can be passed to ... (C++0x 5.2.2).} - -Such argument passing is supported, using the same -pass-by-invisible-reference approach used for normal function -arguments of such types. - -@end itemize - -@node Exception handling -@section Exception Handling - -@itemize @bullet -@item -@cite{In the situation where no matching handler is found, it is -implementation-defined whether or not the stack is unwound before -std::terminate() is called (C++98 15.5.1).} - -The stack is not unwound before std::terminate is called. - -@end itemize |