defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.

* 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
This commit is contained in:
Kazu Hirata 2004-01-19 03:08:14 +00:00 committed by Kazu Hirata
parent 0f18efe35a
commit 0ede749d96
4 changed files with 11 additions and 10 deletions

View 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.

View 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 */

View 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

View 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
/* Functions and data structures for expanding case statements. */