defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 19 Jan 2004 03:08:14 +0000 (03:08 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 19 Jan 2004 03:08:14 +0000 (03:08 +0000)
* defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.
* expr.c (CASE_VECTOR_PC_RELATIVE): Remove.
* stmt.c (CASE_VECTOR_PC_RELATIVE): Likewise.

From-SVN: r76138

gcc/ChangeLog
gcc/defaults.h
gcc/expr.c
gcc/stmt.c

index c6cfde6aee6908a6abb31a94821f727d5b70c0f3..d757597a94104a25090ff4173f917cc77e321b7a 100644 (file)
@@ -1,3 +1,9 @@
+2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.
+       * expr.c (CASE_VECTOR_PC_RELATIVE): Remove.
+       * stmt.c (CASE_VECTOR_PC_RELATIVE): Likewise.
+
 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
 
        * stmt.c (HAVE_casesi): Define it not already defined.
index 2b6c2ef56ae427672429dce8373bc44303963ae3..751ef674941166587ef9583019df15f715cb04b0 100644 (file)
@@ -690,4 +690,9 @@ You Lose!  You must define PREFERRED_DEBUGGING_TYPE!
 #define EXIT_IGNORE_STACK 0
 #endif
 
+/* Assume that case vectors are not pc-relative.  */
+#ifndef CASE_VECTOR_PC_RELATIVE
+#define CASE_VECTOR_PC_RELATIVE 0
+#endif
+
 #endif  /* ! GCC_DEFAULTS_H */
index b5af15893f10190ee9b3cbaf119c0a157901de5a..a2d641e0fa03858ecb1681818024800639109e60 100644 (file)
@@ -73,11 +73,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #endif
 #endif
 
-/* Assume that case vectors are not pc-relative.  */
-#ifndef CASE_VECTOR_PC_RELATIVE
-#define CASE_VECTOR_PC_RELATIVE 0
-#endif
-
 /* Convert defined/undefined to boolean.  */
 #ifdef TARGET_MEM_FUNCTIONS
 #undef TARGET_MEM_FUNCTIONS
index 22bb49bf04aa20de2f3e8c400333b568bebaa17e..7dc1a05aa8f0c3499407ccf9657b32d660c1e5ac 100644 (file)
@@ -58,11 +58,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "predict.h"
 #include "optabs.h"
 #include "target.h"
-
-/* Assume that case vectors are not pc-relative.  */
-#ifndef CASE_VECTOR_PC_RELATIVE
-#define CASE_VECTOR_PC_RELATIVE 0
-#endif
 \f
 /* Functions and data structures for expanding case statements.  */