090c947
commit 9264d325483984f5f2cee06456d5efd3385177b6
090c947
Author: Nick Clifton <nickc@redhat.com>
090c947
Date:   Mon Feb 8 14:51:10 2016 +0000
090c947
090c947
    FIx formatting that triggers a new compile time warning message.
090c947
    
090c947
    	* config/tc-ia64.c (dot_prologue): Fix formatting.
090c947
090c947
diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c
090c947
index 570f746..f0ba4ae 100644
090c947
--- a/gas/config/tc-ia64.c
090c947
+++ b/gas/config/tc-ia64.c
090c947
@@ -4360,12 +4360,14 @@ dot_prologue (int dummy ATTRIBUTE_UNUSED)
090c947
 	as_warn (_("Pointless use of zero first operand to .prologue"));
090c947
       else
090c947
 	mask = e.X_add_number;
090c947
-	n = popcount (mask);
090c947
+
090c947
+      n = popcount (mask);
090c947
 
090c947
       if (sep == ',')
090c947
 	parse_operand_and_eval (&e, 0);
090c947
       else
090c947
 	e.X_op = O_absent;
090c947
+
090c947
       if (e.X_op == O_constant
090c947
 	  && e.X_add_number >= 0
090c947
 	  && e.X_add_number < 128)
090c947
@@ -4385,7 +4387,6 @@ dot_prologue (int dummy ATTRIBUTE_UNUSED)
090c947
 	  as_bad (_("Second operand to .prologue must be the first of %d general registers"), n);
090c947
 	  grsave = 0;
090c947
 	}
090c947
-
090c947
     }
090c947
 
090c947
   if (mask)