diff options
author | Ondřej Bílka <neleai@seznam.cz> | 2013-07-21 18:40:33 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 2013-07-21 18:40:33 +0000 |
commit | d4aef883b7470379c369588dbea57315e1c67a4c (patch) | |
tree | a4c17100219c6730eb84bf3d9da2bdf66c0bc5cb /gcc/ada/gcc-interface | |
parent | 688010bad0375a275466ac1adb98aff80c0e77ac (diff) | |
download | gcc-d4aef883b7470379c369588dbea57315e1c67a4c.zip gcc-d4aef883b7470379c369588dbea57315e1c67a4c.tar.gz gcc-d4aef883b7470379c369588dbea57315e1c67a4c.tar.bz2 |
gigi.h: Likewise.
2013-07-21 OndÅej BÃlka <neleai@seznam.cz>
* gcc-interface/gigi.h: Likewise.
* gcc-interface/trans.c: Likewise.
* gcc-interface/utils2.c: Likewise.
* gnat_rm.texi: Likewise.
* gnat_ugn.texi: Likewise.
* raise-gcc.c: Likewise.
* sigtramp-ppcvxw.c: Likewise.
* sysdep.c: Likewise.
* terminals.c: Likewise.
From-SVN: r201111
Diffstat (limited to 'gcc/ada/gcc-interface')
-rw-r--r-- | gcc/ada/gcc-interface/gigi.h | 2 | ||||
-rw-r--r-- | gcc/ada/gcc-interface/trans.c | 4 | ||||
-rw-r--r-- | gcc/ada/gcc-interface/utils2.c | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/gcc/ada/gcc-interface/gigi.h b/gcc/ada/gcc-interface/gigi.h index 8ee6660..d18fd4d 100644 --- a/gcc/ada/gcc-interface/gigi.h +++ b/gcc/ada/gcc-interface/gigi.h @@ -1043,7 +1043,7 @@ extern void enumerate_modes (void (*f) (const char *, int, int, int, int, int, } #endif -/* Let code know whether we are targetting VMS without need of +/* Let code know whether we are targeting VMS without need of intrusive preprocessor directives. */ #ifndef TARGET_ABI_OPEN_VMS #define TARGET_ABI_OPEN_VMS 0 diff --git a/gcc/ada/gcc-interface/trans.c b/gcc/ada/gcc-interface/trans.c index 4b224ab..f91f4b8 100644 --- a/gcc/ada/gcc-interface/trans.c +++ b/gcc/ada/gcc-interface/trans.c @@ -64,7 +64,7 @@ instead. */ #define ALLOCA_THRESHOLD 1000 -/* Let code below know whether we are targetting VMS without need of +/* Let code below know whether we are targeting VMS without need of intrusive preprocessor directives. */ #ifndef TARGET_ABI_OPEN_VMS #define TARGET_ABI_OPEN_VMS 0 @@ -9163,7 +9163,7 @@ set_end_locus_from_node (tree gnu_node, Node_Id gnat_node) /* Pick the GNAT node of which we'll take the sloc to assign to the GCC node end_locus when there is one. We consider only GNAT nodes with a possible End_Label attached. If the End_Label actually was unassigned, fallback - on the orginal node. We'd better assign an explicit sloc associated with + on the original node. We'd better assign an explicit sloc associated with the outer construct in any case. */ switch (Nkind (gnat_node)) diff --git a/gcc/ada/gcc-interface/utils2.c b/gcc/ada/gcc-interface/utils2.c index 3f39a43..7f7f6af 100644 --- a/gcc/ada/gcc-interface/utils2.c +++ b/gcc/ada/gcc-interface/utils2.c @@ -1902,7 +1902,7 @@ build_simple_component_ref (tree record_variable, tree component, { tree new_field; - /* First loop thru normal components. */ + /* First loop through normal components. */ for (new_field = TYPE_FIELDS (record_type); new_field; new_field = DECL_CHAIN (new_field)) @@ -1910,7 +1910,7 @@ build_simple_component_ref (tree record_variable, tree component, break; /* Next, see if we're looking for an inherited component in an extension. - If so, look thru the extension directly, but not if the type contains + If so, look through the extension directly, but not if the type contains a placeholder, as it might be needed for a later substitution. */ if (!new_field && TREE_CODE (record_variable) == VIEW_CONVERT_EXPR @@ -1926,7 +1926,7 @@ build_simple_component_ref (tree record_variable, tree component, return ref; } - /* Next, loop thru DECL_INTERNAL_P components if we haven't found the + /* Next, loop through DECL_INTERNAL_P components if we haven't found the component in the first search. Doing this search in two steps is required to avoid hidden homonymous fields in the _Parent field. */ if (!new_field) |