summaryrefslogtreecommitdiff
path: root/gcc/doc/tree-ssa.texi
diff options
context:
space:
mode:
authorrwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4>2008-02-17 18:52:04 +0000
committerrwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4>2008-02-17 18:52:04 +0000
commit7a5a9c5410c487fd4d9eec82b452af7241354093 (patch)
treeee13290ab136a405714bb15d927db8ba0cefe98e /gcc/doc/tree-ssa.texi
parenta2355ac94442cb0d5a64217588f0734f6d6b6184 (diff)
downloadgcc-7a5a9c5410c487fd4d9eec82b452af7241354093.tar.gz
* doc/c-tree.texi: Use @dots{} and @enddots{} where appropriate.
* doc/cfg.texi: Likewise. * doc/extend.texi: Likewise. * doc/gty.texi: Likewise. * doc/invoke.texi: Likewise. * doc/loop.texi: Likewise. * doc/md.texi: Likewise. * doc/passes.texi: Likewise. * doc/rtl.texi: Likewise. * doc/sourcebuild.texi: Likewise. * doc/tm.texi: Likewise. * doc/tree-ssa.texi: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132381 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/doc/tree-ssa.texi')
-rw-r--r--gcc/doc/tree-ssa.texi18
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/doc/tree-ssa.texi b/gcc/doc/tree-ssa.texi
index 743ccdf6e69..b6ba4938053 100644
--- a/gcc/doc/tree-ssa.texi
+++ b/gcc/doc/tree-ssa.texi
@@ -828,7 +828,7 @@ instance, given
@{
int a, b, *p;
- if (...)
+ if (@dots{})
p = &a;
else
p = &b;
@@ -850,7 +850,7 @@ operands, use the @option{-vops} option to @option{-fdump-tree}:
@{
int a, b, *p;
- if (...)
+ if (@dots{})
p = &a;
else
p = &b;
@@ -1207,9 +1207,9 @@ all the incoming versions of the variable to create a new name
for it. For instance,
@smallexample
-if (...)
+if (@dots{})
a_1 = 5;
-else if (...)
+else if (@dots{})
a_2 = 2;
else
a_3 = 13;
@@ -1294,11 +1294,11 @@ Suppose that we insert new names @code{x_10} and @code{x_11} (lines
1 L0:
2 x_1 = PHI (0, x_5)
3 if (x_1 < 10)
- 4 x_10 = ...
+ 4 x_10 = @dots{}
5 if (x_1 > 7)
6 y_2 = 0
7 else
- 8 x_11 = ...
+ 8 x_11 = @dots{}
9 y_3 = x_1 + x_7
10 endif
11 x_5 = x_1 + 1
@@ -1390,7 +1390,7 @@ modifications should be bracketed between calls to
munge_stmt (tree stmt)
@{
push_stmt_changes (&stmt);
- ... rewrite STMT ...
+ @dots{} rewrite STMT @dots{}
pop_stmt_changes (&stmt);
@}
@end smallexample
@@ -1666,7 +1666,7 @@ T, we add Vi to the may-aliases set for T@. Meaning that
after alias analysis, we will have:
@smallexample
-may-aliases(T) = @{ V1, V2, V3, ..., Vn @}
+may-aliases(T) = @{ V1, V2, V3, @dots{}, Vn @}
@end smallexample
This means that every statement that references T, will get
@@ -1677,7 +1677,7 @@ to the alias set of all the Vi variables:
@smallexample
may-aliases(V1) = @{ T @}
may-aliases(V2) = @{ T @}
-...
+@dots{}
may-aliases(Vn) = @{ T @}
@end smallexample