This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] GAS: Replace leading spaces with tabs across dw2gencfi.c


Hi,

 This fixes indentation across gas/dw2gencfi.c replacing leading spaces 
with tabs where appropriate.  Committed as obvious.

2014-08-20  Maciej W. Rozycki  <macro@codesourcery.com>

	gas/
	* dw2gencfi.c (make_debug_seg): Replace leading spaces with tabs.
	(dot_cfi_val_encoded_addr, output_cfi_insn): Likewise.
	(output_cie, cfi_change_reg_numbers, cfi_finish): Likewise.

  Maciej

binutils-gas-dw2gencfi-format.diff
Index: binutils-fsf-trunk-quilt/gas/dw2gencfi.c
===================================================================
--- binutils-fsf-trunk-quilt.orig/gas/dw2gencfi.c	2014-04-04 15:27:21.537986840 +0100
+++ binutils-fsf-trunk-quilt/gas/dw2gencfi.c	2014-04-04 15:53:13.708167341 +0100
@@ -187,8 +187,8 @@ make_debug_seg (segT cseg, char *name, i
   else
     flags = bfd_get_section_flags (stdoutput, cseg)
       & (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD
-         | SEC_LINK_DUPLICATES_ONE_ONLY | SEC_LINK_DUPLICATES_SAME_SIZE
-         | SEC_LINK_DUPLICATES_SAME_CONTENTS);
+	 | SEC_LINK_DUPLICATES_ONE_ONLY | SEC_LINK_DUPLICATES_SAME_SIZE
+	 | SEC_LINK_DUPLICATES_SAME_CONTENTS);
 
   /* Add standard section flags.  */
   flags |= sflags;
@@ -999,7 +999,7 @@ dot_cfi_val_encoded_addr (int ignored AT
       break;
     case O_constant:
       if ((encoding & 0x70) != DW_EH_PE_pcrel)
-        break;
+	break;
     default:
       encoding = DW_EH_PE_omit;
       break;
@@ -1330,15 +1330,15 @@ output_cfi_insn (struct cfi_insn_data *i
 
     case CFI_val_encoded_addr:
       {
-        unsigned encoding = insn->u.ea.encoding;
-        offsetT encoding_size;
+	unsigned encoding = insn->u.ea.encoding;
+	offsetT encoding_size;
 
 	if (encoding == DW_EH_PE_omit)
 	  break;
 	out_one (DW_CFA_val_expression);
 	out_uleb128 (insn->u.ea.reg);
 
-        switch (encoding & 0x7)
+	switch (encoding & 0x7)
 	  {
 	  case DW_EH_PE_absptr:
 	    encoding_size = DWARF2_ADDR_SIZE (stdoutput);
@@ -1521,7 +1521,7 @@ output_cie (struct cie_entry *cie, bfd_b
   if (cie->first)
     {
       for (i = cie->first; i != cie->last; i = i->next)
-        {
+	{
 	  if (CUR_SEG (i) != CUR_SEG (cie))
 	    continue;
 	  output_cfi_insn (i);
@@ -1779,7 +1779,7 @@ cfi_change_reg_numbers (struct cfi_insn_
   for (; insn; insn = insn->next)
     {
       if (CUR_SEG (insn) != ccseg)
-        continue;
+	continue;
       switch (insn->insn)
 	{
 	case DW_CFA_advance_loc:
@@ -1874,7 +1874,7 @@ cfi_finish (void)
 	}
 
       do
-        {
+	{
 	  ccseg = NULL;
 	  seek_next_seg = 0;
 
@@ -1944,7 +1944,7 @@ cfi_finish (void)
 		     alignment);
 
       do
-        {
+	{
 	  ccseg = NULL;
 	  seek_next_seg = 0;
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]