diff options
author | Mark Mitchell <mark@codesourcery.com> | 2001-02-12 09:58:18 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2001-02-12 09:58:18 +0000 |
commit | 1f84ec231e3abac2f8fc874a6231d337cd03897b (patch) | |
tree | 1ceebcb928abd0eff2f89a79f7f7fa861efccbc3 /gcc/cp/cvt.c | |
parent | 11662aaaa54c005e951850b36f7c6b53f6c6d709 (diff) | |
download | gcc-1f84ec231e3abac2f8fc874a6231d337cd03897b.zip gcc-1f84ec231e3abac2f8fc874a6231d337cd03897b.tar.gz gcc-1f84ec231e3abac2f8fc874a6231d337cd03897b.tar.bz2 |
Remove old ABI support.
From-SVN: r39599
Diffstat (limited to 'gcc/cp/cvt.c')
-rw-r--r-- | gcc/cp/cvt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/cvt.c b/gcc/cp/cvt.c index 9fa2a66..1f74eb4 100644 --- a/gcc/cp/cvt.c +++ b/gcc/cp/cvt.c @@ -258,7 +258,7 @@ cp_convert_to_pointer (type, expr, force) if (TYPE_PTRMEMFUNC_P (type)) return build_ptrmemfunc (TYPE_PTRMEMFUNC_FN_TYPE (type), expr, 0); - if (flag_new_abi && TYPE_PTRMEM_P (type)) + if (TYPE_PTRMEM_P (type)) /* Under the new ABI, a NULL pointer-to-member is represented by -1, not by zero. */ expr = build_int_2 (-1, -1); |