diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-01-19 03:08:14 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-01-19 03:08:14 +0000 |
commit | 0ede749d962489a7fbc3876ea6466f12d0d1fbbf (patch) | |
tree | d1fff5e93620424f1c8feaa1cac1db418d538682 /gcc/defaults.h | |
parent | 0f18efe35a1d98cac6cc190e3c0c47dbb837d076 (diff) | |
download | gcc-0ede749d962489a7fbc3876ea6466f12d0d1fbbf.zip gcc-0ede749d962489a7fbc3876ea6466f12d0d1fbbf.tar.gz gcc-0ede749d962489a7fbc3876ea6466f12d0d1fbbf.tar.bz2 |
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
Diffstat (limited to 'gcc/defaults.h')
-rw-r--r-- | gcc/defaults.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/defaults.h b/gcc/defaults.h index 2b6c2ef..751ef67 100644 --- a/gcc/defaults.h +++ b/gcc/defaults.h @@ -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 */ |