Sync up the tag numbers with gcc4.
authorJim Laskey <jlaskey@mac.com>
Mon, 13 Feb 2006 16:56:43 +0000 (16:56 +0000)
committerJim Laskey <jlaskey@mac.com>
Mon, 13 Feb 2006 16:56:43 +0000 (16:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26146 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineDebugInfo.h

index b730ddc9e2230bb68dbcf8300055c113c81b5359..2df9eb35ee741451c183bd3344ce1a0c4e6fcdac 100644 (file)
@@ -58,17 +58,10 @@ enum {
   DIInvalid = ~0U,                      // Invalid result indicator.
   
   // DebugInfoDesc type identifying tags.
-  // FIXME - Change over with gcc4.
   DI_TAG_anchor = 0,
-#if 1
-  DI_TAG_compile_unit = DW_TAG_compile_unit,
-  DI_TAG_global_variable = DW_TAG_variable,
-  DI_TAG_subprogram = DW_TAG_subprogram
-#else
   DI_TAG_compile_unit,
   DI_TAG_global_variable,
   DI_TAG_subprogram
-#endif
 };
 
 //===----------------------------------------------------------------------===//
@@ -78,8 +71,7 @@ class DIVisitor {
 public:
   DIVisitor() {}
   virtual ~DIVisitor() {}
-  
-  
+
   /// ApplyToFields - Target the visitor to each field of the debug information
   /// descriptor.
   void ApplyToFields(DebugInfoDesc *DD);