* tree.h (DECL_IS_BUILTIN): Reverted my patch from earlier today.
authorPer Bothner <per@bothner.com>
Tue, 8 Mar 2005 01:28:39 +0000 (17:28 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Tue, 8 Mar 2005 01:28:39 +0000 (17:28 -0800)
From-SVN: r96075

gcc/ChangeLog
gcc/tree.h

index 94a9dd9c72bf3d63ed073a7bd3c823066f3bfb0a..e415f607297b59b0f2b11b59617bc5f3d1f099fe 100644 (file)
@@ -1,3 +1,7 @@
+2005-03-07  Per Bothner  <per@bothner.com>
+
+       * tree.h (DECL_IS_BUILTIN): Reverted my patch from earlier today.
+
 2005-03-06  Andrew Pinski  <pinskia@physics.uc.edu>
        
        PR tree-opt/17671
index 34394f13eeb1fd1746eb2ee720302b2e34607c18..acbfc93eaa68f715d6b81a70fde8ee499df82413 100644 (file)
@@ -1952,11 +1952,7 @@ struct tree_binfo GTY (())
 #define DECL_SOURCE_LOCATION(NODE) (DECL_CHECK (NODE)->decl.locus)
 #define DECL_SOURCE_FILE(NODE) LOCATION_FILE (DECL_SOURCE_LOCATION (NODE))
 #define DECL_SOURCE_LINE(NODE) LOCATION_LINE (DECL_SOURCE_LOCATION (NODE))
-#if 0
-/* Should be: #ifdef USE_MAPPED_LOCATION
-   However, there appears to be a jc1 bug that this would expose.
-   (It prevents bookstrapping because dwarf2out tries to emit a
-   non-found class.) FIXME. */
+#ifdef USE_MAPPED_LOCATION
 #define DECL_IS_BUILTIN(DECL) \
   (DECL_SOURCE_LOCATION (DECL) <= BUILTINS_LOCATION)
 #else