]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/recog.c
Remove trailing whitespace. Add missing dbxout.c hunk.
[thirdparty/gcc.git] / gcc / recog.c
index ecb7c06794d5feb2db36e0596a6e6a5a81f5f432..b8073afb3a62814fd63c07cd82d5faad28d873bd 100644 (file)
@@ -1181,16 +1181,16 @@ const_scalar_int_operand (rtx op, enum machine_mode mode)
     {
       int prec = GET_MODE_PRECISION (mode);
       int bitsize = GET_MODE_BITSIZE (mode);
-      
+
       if (CONST_WIDE_INT_NUNITS (op) * HOST_BITS_PER_WIDE_INT > bitsize)
        return 0;
-      
+
       if (prec == bitsize)
        return 1;
       else
        {
          /* Multiword partial int.  */
-         HOST_WIDE_INT x 
+         HOST_WIDE_INT x
            = CONST_WIDE_INT_ELT (op, CONST_WIDE_INT_NUNITS (op) - 1);
          return (sext_hwi (x, prec & (HOST_BITS_PER_WIDE_INT - 1)) == x);
        }