diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2020-06-23 18:34:42 +0200 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:14:37 -0300 |
commit | 52c0bba3b0933d42a3f805e5efe85b4672548f54 (patch) | |
tree | e040e0c6ddb15e49b396e09539349d81e8cfbbf4 /gcc | |
parent | 0a03f574d09892ee596c4fbe0f3f78da074aab39 (diff) | |
download | gcc-52c0bba3b0933d42a3f805e5efe85b4672548f54.zip gcc-52c0bba3b0933d42a3f805e5efe85b4672548f54.tar.gz gcc-52c0bba3b0933d42a3f805e5efe85b4672548f54.tar.bz2 |
Remove superfluous space
gcc/ada/ChangeLog:
* gcc-interface/utils2.c (build_binary_op): Remove space.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/gcc-interface/utils2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/utils2.c b/gcc/ada/gcc-interface/utils2.c index 364440b..c8a2d7c 100644 --- a/gcc/ada/gcc-interface/utils2.c +++ b/gcc/ada/gcc-interface/utils2.c @@ -972,7 +972,7 @@ build_binary_op (enum tree_code op_code, tree result_type, && (((TREE_CODE (restype) == TREE_CODE (operand_type (result)) && TYPE_MODE (restype) - == TYPE_MODE (operand_type (result)))) + == TYPE_MODE (operand_type (result)))) || TYPE_ALIGN_OK (restype)))) result = TREE_OPERAND (result, 0); |