Fix minor typos in comments that affected syntax highlighting.
authorErick Ochoa <erick.ochoa@theobroma-systems.com>
Thu, 7 May 2020 17:19:57 +0000 (13:19 -0400)
committerJeff Law <law@torsion.usersys.redhat.com>
Thu, 7 May 2020 17:19:57 +0000 (13:19 -0400)
* gcc/tree-ssa-struct-alias.c: Fix comments

gcc/ChangeLog
gcc/tree-ssa-structalias.c

index 2a20e21c65c38c7e95d93d8b5f867f9835a0cb3a..f59940c67391d9797fce83778c0d18c3c619776e 100644 (file)
@@ -1,3 +1,7 @@
+2020-05-07  Erick Ochoa <erick.ochoa@theobroma-systems.com>
+
+       * gcc/tree-ssa-struct-alias.c: Fix comments
+
 2020-05-07  Martin Liska  <mliska@suse.cz>
 
        * doc/invoke.texi: Fix 2 optindex entries.
index e9fcafd9b34080a9b959c80a493d4fc1bbf13735..b37808c8fd4f6e0da609a1411c2a751eb922046a 100644 (file)
    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.
 
 
    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.