dwarf2out.c (current_fde): Change return type to dw_fde_ref.
authorH.J. Lu <hongjiu.lu@intel.com>
Tue, 27 May 2008 18:43:57 +0000 (18:43 +0000)
committerH.J. Lu <hjl@gcc.gnu.org>
Tue, 27 May 2008 18:43:57 +0000 (11:43 -0700)
2008-05-27  H.J. Lu  <hongjiu.lu@intel.com>

* dwarf2out.c (current_fde): Change return type to dw_fde_ref.
Moved to the front of file.

From-SVN: r136046

gcc/ChangeLog
gcc/dwarf2out.c

index 3b5fb98dc0192496d10e020a4a76bb25821644ee..92c82d0e4feca9033933ed708ff744f033e09385 100644 (file)
@@ -1,3 +1,8 @@
+2008-05-27  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * dwarf2out.c (current_fde): Change return type to dw_fde_ref.
+       Moved to the front of file.
+
 2008-05-27  Xuepeng Guo  <xuepeng.guo@intel.com>
            H.J. Lu  <hongjiu.lu@intel.com>
 
index 76df897edf92aa544f3a6f520aeed6d873bf1746..2113410232cef644f677e3ecba0cf87b0c198a6c 100644 (file)
@@ -315,6 +315,14 @@ static GTY(()) unsigned fde_table_in_use;
    fde_table.  */
 #define FDE_TABLE_INCREMENT 256
 
+/* Get the current fde_table entry we should use.  */
+
+static inline dw_fde_ref
+current_fde (void)
+{
+  return fde_table_in_use ? &fde_table[fde_table_in_use - 1] : NULL;
+}
+
 /* A list of call frame insns for the CIE.  */
 static GTY(()) dw_cfi_ref cie_cfi_head;
 
@@ -633,14 +641,6 @@ dwarf2out_cfi_label (void)
   return label;
 }
 
-/* Get the current fde_table entry we should use.  */
-
-static inline struct dw_fde_struct * 
-current_fde (void)
-{
-  return fde_table_in_use ? &fde_table[fde_table_in_use - 1] : NULL;
-}
-
 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
    or to the CIE if LABEL is NULL.  */