diff options
author | Erick Ochoa <erick.ochoa@theobroma-systems.com> | 2020-05-07 13:19:57 -0400 |
---|---|---|
committer | Jeff Law <law@torsion.usersys.redhat.com> | 2020-05-07 13:19:57 -0400 |
commit | 5438a28a050f8ecea1352134047efeff5111b603 (patch) | |
tree | 031a03d928a2f0b1dff67edbb17d0b1a1effb4ea /gcc/tree-ssa-structalias.c | |
parent | ab2952c77d029c93fc813dec9760f8a517286e5e (diff) | |
download | gcc-5438a28a050f8ecea1352134047efeff5111b603.zip gcc-5438a28a050f8ecea1352134047efeff5111b603.tar.gz gcc-5438a28a050f8ecea1352134047efeff5111b603.tar.bz2 |
Fix minor typos in comments that affected syntax highlighting.
* gcc/tree-ssa-struct-alias.c: Fix comments
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index e9fcafd..b37808c 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -57,11 +57,11 @@ as a consequence. See "Efficient Field-sensitive pointer analysis for C" by "David - J. Pearce and Paul H. J. Kelly and Chris Hankin, at + J. Pearce and Paul H. J. Kelly and Chris Hankin", at http://citeseer.ist.psu.edu/pearce04efficient.html Also see "Ultra-fast Aliasing Analysis using CLA: A Million Lines - of C Code in a Second" by ""Nevin Heintze and Olivier Tardieu" at + of C Code in a Second" by "Nevin Heintze and Olivier Tardieu" at http://citeseer.ist.psu.edu/heintze01ultrafast.html There are three types of real constraint expressions, DEREF, @@ -84,7 +84,7 @@ Each variable for a structure field has 1. "size", that tells the size in bits of that field. - 2. "fullsize, that tells the size in bits of the entire structure. + 2. "fullsize", that tells the size in bits of the entire structure. 3. "offset", that tells the offset in bits from the beginning of the structure to this field. @@ -188,7 +188,7 @@ We probably should compute a per-function unit-ESCAPE solution propagating it simply like the clobber / uses solutions. The - solution can go alongside the non-IPA espaced solution and be + solution can go alongside the non-IPA escaped solution and be used to query which vars escape the unit through a function. This is also required to make the escaped-HEAP trick work in IPA mode. |