diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2008-01-13 21:00:39 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2008-01-13 21:00:39 +0000 |
commit | 08ffbdad7e2ea994a27156bf3315c2bd8f4a9876 (patch) | |
tree | ccaa43f2838bf1a1c50299fdc2c0970775cd3b56 /gcc/ada/utils.c | |
parent | 2cb207f7f387df9b17fbebe76d09991e20d6e880 (diff) | |
download | gcc-08ffbdad7e2ea994a27156bf3315c2bd8f4a9876.zip gcc-08ffbdad7e2ea994a27156bf3315c2bd8f4a9876.tar.gz gcc-08ffbdad7e2ea994a27156bf3315c2bd8f4a9876.tar.bz2 |
* trans.c (call_to_gnu):Invoke the addressable_p predicate only
when necessary. Merge some conditional statements. Update comments.
Rename unchecked_convert_p local variable to suppress_type_conversion.
Do not suppress conversions in the In case.
(addressable_p) <VIEW_CONVERT_EXPR>: Do not take alignment issues
into account on non strict-alignment platforms.
From-SVN: r131510
Diffstat (limited to 'gcc/ada/utils.c')
-rw-r--r-- | gcc/ada/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/utils.c b/gcc/ada/utils.c index b158725..1c97541 100644 --- a/gcc/ada/utils.c +++ b/gcc/ada/utils.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 1992-2007, Free Software Foundation, Inc. * + * Copyright (C) 1992-2008, Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -1683,7 +1683,7 @@ create_field_decl (tree field_name, tree field_type, tree record_type, /* Returns a PARM_DECL node. PARAM_NAME is the name of the parameter, PARAM_TYPE is its type. READONLY is true if the parameter is - readonly (either an IN parameter or an address of a pass-by-ref + readonly (either an In parameter or an address of a pass-by-ref parameter). */ tree |