aboutsummaryrefslogtreecommitdiff
path: root/gcc/doc
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@pfeifer.com>2017-01-02 14:23:06 +0000
committerGerald Pfeifer <gerald@gcc.gnu.org>2017-01-02 14:23:06 +0000
commita94d23fc69de8d286f507b497e1af626771a447c (patch)
tree8e0c8a69b18f858d247acf15c93531ee894d2503 /gcc/doc
parent337160b8ec4c9d5a905fbbd67984d0c91f70d1a7 (diff)
downloadgcc-a94d23fc69de8d286f507b497e1af626771a447c.zip
gcc-a94d23fc69de8d286f507b497e1af626771a447c.tar.gz
gcc-a94d23fc69de8d286f507b497e1af626771a447c.tar.bz2
cfg.texi (Edges): Remove reference to Java.
* doc/cfg.texi (Edges): Remove reference to Java. (Maintaining the CFG): Ditto. From-SVN: r244002
Diffstat (limited to 'gcc/doc')
-rw-r--r--gcc/doc/cfg.texi5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/doc/cfg.texi b/gcc/doc/cfg.texi
index a4d0c1d..31b212c 100644
--- a/gcc/doc/cfg.texi
+++ b/gcc/doc/cfg.texi
@@ -285,7 +285,7 @@ is needed. Note that this may require creation of a new basic block.
Exception handling edges represent possible control transfers from a
trapping instruction to an exception handler. The definition of
``trapping'' varies. In C++, only function calls can throw, but for
-Java and Ada, exceptions like division by zero or segmentation fault are
+Ada exceptions like division by zero or segmentation fault are
defined and thus each instruction possibly throwing this kind of
exception needs to be handled as control flow instruction. Exception
edges have the @code{EDGE_ABNORMAL} and @code{EDGE_EH} flags set.
@@ -594,8 +594,7 @@ can just use @code{NEXT_INSN} and @code{PREV_INSN} instead. @xref{Insns}.
Usually a code manipulating pass simplifies the instruction stream and
the flow of control, possibly eliminating some edges. This may for
example happen when a conditional jump is replaced with an
-unconditional jump, but also when simplifying possibly trapping
-instruction to non-trapping while compiling Java. Updating of edges
+unconditional jump. Updating of edges
is not transparent and each optimization pass is required to do so
manually. However only few cases occur in practice. The pass may
call @code{purge_dead_edges} on a given basic block to remove