bechordal_draw: Remove the write-only attribute max_color from struct draw_chordal_env_t.
[libfirm] / win32 / firmEvaluator / firm.c
index 8422d8d..da0fc9d 100644 (file)
@@ -53,7 +53,7 @@ static void debug(char *fmt, ...)
 
   OutputDebugString(buf);
   va_end(ap);
-}  /* debug */
+}
 
 /**
  * return the size of a firm object
@@ -77,14 +77,12 @@ int get_firm_object_size(firm_kind kind)
     return sizeof(tarval);
   case k_ir_loop:    /* a loop */
     return sizeof(ir_loop);
-  case k_ir_compound_graph_path: /* a compound graph path, see entity.h */
-    return sizeof(compound_graph_path);
   case k_ir_prog:    /* a program representation (irp) */
     return sizeof(ir_prog);
   default:
     return 0;
   }
-}  /* get_firm_object_size */
+}
 
 /**
  * returns the string length of a string in debuggee space
@@ -105,7 +103,7 @@ static int strlen_debuggee(DEBUGHELPER *pHelper, const void *address, size_t max
       return i;
   }
   return i;
-}  /* strlen_debuggee */
+}
 
 /**
  * Format an ident
@@ -133,7 +131,7 @@ HRESULT format_ident(DEBUGHELPER *pHelper, const void *address, char *pResult, s
 
   _tcsncpy(pResult, (const char *)data->dptr, max);
   return S_OK;
-}  /* format_ident */
+}
 
 /**
  * Format a tp_op
@@ -165,7 +163,7 @@ static HRESULT format_tp_op(DEBUGHELPER *pHelper, const void *addr, char *pResul
   }
 #undef X
 #undef Y
-}  /* format_tp_op */
+}
 
 /**
  * Checks whether a type is the global type
@@ -182,7 +180,7 @@ static HRESULT is_global_type(DEBUGHELPER *pHelper, const void *type, int *flag)
 
   *flag = tp.flags & tf_global_type;
   return S_OK;
-}  /* is_global_type */
+}
 
 /**
  * format an entity
@@ -230,7 +228,7 @@ static HRESULT format_entity(DEBUGHELPER *pHelper, int nBase, const void *addr,
   _tcsncat(pResult, name, max);
 
   return S_OK;
-}  /* format_entity */
+}
 
 /**
  * format an ir_mode
@@ -244,7 +242,7 @@ static HRESULT format_mode(DEBUGHELPER *pHelper, const void *addr, char *pResult
   if (format_ident(pHelper, mode.name, pResult, max) != S_OK)
     return E_FAIL;
   return S_OK;
-}  /* format_mode */
+}
 
 /**
  * format a type
@@ -288,7 +286,7 @@ static HRESULT format_type(DEBUGHELPER *pHelper, int nBase, const void *addr, ch
   _tcsncat(pResult, name, max);
 
   return S_OK;
-}  /* format_type */
+}
 
 /**
  * format an irg
@@ -341,7 +339,7 @@ static HRESULT format_irg(DEBUGHELPER *pHelper, int nBase, const void *addr, cha
   }
   _tcsncat(pResult, name, max);
   return S_OK;
-}  /* format_irg */
+}
 
 /**
  * format an ir_op
@@ -355,7 +353,7 @@ HRESULT format_op(DEBUGHELPER *pHelper, const void *addr, char *pResult, size_t
   if (format_ident(pHelper, op.name, pResult, max) != S_OK)
     return E_FAIL;
   return S_OK;
-}  /* format_op */
+}
 
 /** get a temporary string */
 #define get_string(str)                                         \
@@ -475,7 +473,7 @@ static HRESULT format_tarval(DEBUGHELPER *pHelper, int nBase, const void *addr,
     }
   }
   return S_OK;
-}  /* format_tarval */
+}
 
 /**
  * format an ir_node
@@ -591,7 +589,7 @@ static HRESULT format_node(DEBUGHELPER *pHelper, int nBase, const void *addr, ch
   _tcsncat(pResult, name, max);
 
   return S_OK;
-}  /* format_node */
+}
 
 /**
  * format a loop
@@ -603,7 +601,7 @@ static HRESULT format_loop(DEBUGHELPER *pHelper, const void *addr, char *pResult
   if (copy_from_debuggee(addr, pHelper, &loop, sizeof(loop)) != S_OK)
     return E_FAIL;
   return E_FAIL;
-}  /* format_loop */
+}
 
 /**
  * Get an array descriptor
@@ -615,7 +613,7 @@ static HRESULT get_array_desc(DEBUGHELPER *pHelper, const void *address, ir_arr_
     return E_FAIL;
 
   return S_OK;
-}  /* get_array_desc */
+}
 
 /**
  * format a ir_prog
@@ -655,7 +653,7 @@ static HRESULT format_prog(DEBUGHELPER *pHelper, int nBase, const void *addr, ch
   _tcsncpy(pResult, name, max);
 
   return S_OK;
-}  /* format_prog */
+}
 
 /*
  * Format an array descriptor
@@ -692,7 +690,7 @@ HRESULT format_arr_descr(DEBUGHELPER *pHelper, int nBase, const void *addr, char
   _tcsncat(pResult, name, max);
 
   return S_OK;
-}  /* format_arr_descr */
+}
 
 /*
  * format a firm object
@@ -716,14 +714,12 @@ HRESULT FormatFirmObject(DEBUGHELPER *pHelper, int nBase, firm_kind kind, const
     return format_tarval(pHelper, nBase, addr, pResult, max);
   case k_ir_loop:    /* a loop */
     return format_loop(pHelper, addr, pResult, max);
-  case k_ir_compound_graph_path: /* a compound graph path, see entity.h */
-    return E_FAIL;
   case k_ir_prog:    /* a program representation (irp) */
     return format_prog(pHelper, nBase, addr, pResult, max);
   default:
     return E_FAIL;
   }
-}  /* FormatFirmObject */
+}
 
 #define SEGMENT_SIZE_SHIFT     8
 #define SEGMENT_SIZE           (1 << SEGMENT_SIZE_SHIFT)
@@ -807,7 +803,7 @@ static HRESULT find_longest_pset_chain(DEBUGHELPER *pHelper, pset *set,
   *lenght = max_len;
   *size   = dyns;
   return S_OK;
-}  /* find_longest_pset_chain */
+}
 
 /**
  * Find the longest chain of a set
@@ -848,7 +844,7 @@ static HRESULT find_longest_set_chain(DEBUGHELPER *pHelper, set *set,
   *lenght = max_len;
   *size   = dyns;
   return S_OK;
-}  /* find_longest_set_chain */
+}
 
 /*
  * Format a pset
@@ -879,7 +875,7 @@ HRESULT format_pset(DEBUGHELPER *pHelper, int nBase, const void *address, char *
   _tcsncpy(pResult, name, max);
 
   return S_OK;
-}  /* format_pset */
+}
 
 /*
  * Format a set
@@ -910,7 +906,7 @@ HRESULT format_set(DEBUGHELPER *pHelper, int nBase, const void *address, char *p
   _tcsncpy(pResult, name, max);
 
   return S_OK;
-}  /* format_set */
+}
 
 struct pdeq {
   unsigned magic;       /**< debug magic, only available in DEBUG builds */
@@ -947,7 +943,7 @@ static int get_pdeq_len(DEBUGHELPER *pHelper, pdeq *dq)
   };
 
   return n;
-}  /* get_pdeq_len */
+}
 
 /*
  * Format a pdeq
@@ -978,7 +974,7 @@ HRESULT format_pdeq(DEBUGHELPER *pHelper, int nBase, const void *address, char *
   _tcsncpy(pResult, name, max);
 
   return S_OK;
-}  /* format_pdeq */
+}
 
 /** show the first 2 units */
 static HRESULT fill_bits(DEBUGHELPER *pHelper, bitset_t *bs, char *pResult)
@@ -1012,7 +1008,7 @@ end:
   }
   sprintf(pResult + l, "}");
   return S_OK;
-}  /* fill_bits */
+}
 
 /*
  * Format a bitset
@@ -1045,4 +1041,4 @@ HRESULT format_bitset(DEBUGHELPER *pHelper, int nBase, const void *address, char
   _tcsncpy(pResult, name, max);
 
   return S_OK;
-}  /* format_bitset */
+}