summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-08 01:28:39 +0000
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>2005-03-08 01:28:39 +0000
commitda74793e5913967c0abaf143bf37982e2ce2c2c1 (patch)
treeb950f249b32790eddbda03e1d171aac6baec2215
parent33784d892c33dd0a786f9773c17099f35bc3cef5 (diff)
downloadgcc-da74793e5913967c0abaf143bf37982e2ce2c2c1.tar.gz
* tree.h (DECL_IS_BUILTIN): Reverted my patch from earlier today.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96075 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 94a9dd9c72b..e415f607297 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/tree.h b/gcc/tree.h
index 34394f13eeb..acbfc93eaa6 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -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