OSDN Git Service

Fix formatting in last commit.
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Apr 2003 02:23:45 +0000 (02:23 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Apr 2003 02:23:45 +0000 (02:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65559 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/builtins.c

index 51e8976..1519593 100644 (file)
@@ -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