diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-05-12 14:58:47 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2001-05-12 14:58:47 +0000 |
commit | 92928d71f458ce1dc148ef2f34a9ae11df088c1a (patch) | |
tree | 81e413ac3a70b7470db5f06b01919cac206da700 /gcc | |
parent | cb7fdde2d7c297ba9a736e8dfc9de4a4560a7634 (diff) | |
download | gcc-92928d71f458ce1dc148ef2f34a9ae11df088c1a.zip gcc-92928d71f458ce1dc148ef2f34a9ae11df088c1a.tar.gz gcc-92928d71f458ce1dc148ef2f34a9ae11df088c1a.tar.bz2 |
* config/arm/arm.h (TARGET_PTRMEMFUNC_VBIT_LOCATION): Use delta.
From-SVN: r41993
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/arm/arm.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 748847f..745094d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2001-05-12 Alexandre Oliva <aoliva@redhat.com> + * config/arm/arm.h (TARGET_PTRMEMFUNC_VBIT_LOCATION): Use delta. + +2001-05-12 Alexandre Oliva <aoliva@redhat.com> + * defaults.h (TARGET_PTRMEMFUNC_VBIT_LOCATION): Define. * tm.texi (TARGET_PRTMEMFUNC_VBIT_LOCATION): Document. diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 61082c3..4dc8c2b 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -707,6 +707,11 @@ extern int arm_is_6_or_7; #define FUNCTION_BOUNDARY 32 +/* The lowest bit is used to indicate Thumb-mode functions, so the + vbit must go into the delta field of pointers to member + functions. */ +#define TARGET_PTRMEMFUNC_VBIT_LOCATION ptrmemfunc_vbit_in_delta + #define EMPTY_FIELD_BOUNDARY 32 #define BIGGEST_ALIGNMENT 32 |