aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface/utils.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2021-05-21 11:25:53 +0200
committerEric Botcazou <ebotcazou@adacore.com>2021-05-21 11:27:28 +0200
commit49c2c7f6551f9a71a1bc6766d3b7482a8b39c4ac (patch)
tree2cd3100c10ad8eb60ece0684751dd82f5f95be71 /gcc/ada/gcc-interface/utils.c
parent3553d8c2fecbe8d831538c661c9e58e7ae50c385 (diff)
downloadgcc-49c2c7f6551f9a71a1bc6766d3b7482a8b39c4ac.zip
gcc-49c2c7f6551f9a71a1bc6766d3b7482a8b39c4ac.tar.gz
gcc-49c2c7f6551f9a71a1bc6766d3b7482a8b39c4ac.tar.bz2
Remove discriminant checks in gigi
gcc/ada/ * gcc-interface/utils.c (gnat_pushdecl): Fix typo in comment. * gcc-interface/utils2.c (build_simple_component_ref): Build NULL_EXPR if the offset of the field has overflowed. (build_component_ref): Add gigi checking assertion that the reference has been built and replace the discriminant check by a Program_Error.
Diffstat (limited to 'gcc/ada/gcc-interface/utils.c')
-rw-r--r--gcc/ada/gcc-interface/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/utils.c b/gcc/ada/gcc-interface/utils.c
index 8d1040b..1786fbf 100644
--- a/gcc/ada/gcc-interface/utils.c
+++ b/gcc/ada/gcc-interface/utils.c
@@ -784,7 +784,7 @@ gnat_pushdecl (tree decl, Node_Id gnat_node)
tree context = NULL_TREE;
struct deferred_decl_context_node *deferred_decl_context = NULL;
- /* If explicitely asked to make DECL global or if it's an imported nested
+ /* If explicitly asked to make DECL global or if it's an imported nested
object, short-circuit the regular Scope-based context computation. */
if (!((TREE_PUBLIC (decl) && DECL_EXTERNAL (decl)) || force_global == 1))
{