diff options
author | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-04-14 02:23:45 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-04-14 02:23:45 +0000 |
commit | e235df1f71573b7652df5ecec912f190055baf22 (patch) | |
tree | 94601153c1b877a00387d2d3ec11459033e8bd9e /gcc/builtins.c | |
parent | fda8869be80d938fcfe9af51fa163d1cbc376aa0 (diff) | |
download | gcc-e235df1f71573b7652df5ecec912f190055baf22.zip gcc-e235df1f71573b7652df5ecec912f190055baf22.tar.gz gcc-e235df1f71573b7652df5ecec912f190055baf22.tar.bz2 |
Fix formatting in last commit.
From-SVN: r65559
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 51e8976..1519593 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -2323,9 +2323,9 @@ expand_builtin_memcpy (arglist, target, mode, endp) #endif if (endp) { - rtx result = gen_rtx_PLUS (GET_MODE(dest_mem), dest_mem, len_rtx); + rtx result = gen_rtx_PLUS (GET_MODE (dest_mem), dest_mem, len_rtx); if (endp == 2) - result = simplify_gen_binary (MINUS, GET_MODE(result), result, const1_rtx); + result = simplify_gen_binary (MINUS, GET_MODE (result), result, const1_rtx); return result; } else @@ -2352,7 +2352,7 @@ expand_builtin_memcpy (arglist, target, mode, endp) { rtx result = gen_rtx_PLUS (GET_MODE (dest_addr), dest_addr, len_rtx); if (endp == 2) - result = simplify_gen_binary (MINUS, GET_MODE(result), result, const1_rtx); + result = simplify_gen_binary (MINUS, GET_MODE (result), result, const1_rtx); return result; } else |