diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-16 13:58:07 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-16 13:58:07 +0000 |
commit | 57d46c619353e523fe06cdd22ee3231c57196de3 (patch) | |
tree | 98edefa5013064e1fe081d29fa44021bb5888015 /gcc/config/vax | |
parent | 50460a3733a7a2f66a02eb14cefed62e197804df (diff) | |
download | gcc-57d46c619353e523fe06cdd22ee3231c57196de3.tar.gz |
* c-lex.c (lex_number): Use ISXDIGIT/hex_value.
* vax/xm-vms.h (FILE_NAME_NONDIRECTORY): Use ISUPPER/TOLOWER.
* fold-const.c (real_hex_to_f): Use hex_value.
* real.c (asctoeg): Use hex_value & ISXDIGIT.
* toplev.c (toplev_main): Call hex_init.
* tradcpp.c (main): Call hex_init.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48068 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/vax')
-rw-r--r-- | gcc/config/vax/xm-vms.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/vax/xm-vms.h b/gcc/config/vax/xm-vms.h index ba88d25736f..eaf5f3bf510 100644 --- a/gcc/config/vax/xm-vms.h +++ b/gcc/config/vax/xm-vms.h @@ -66,7 +66,7 @@ Boston, MA 02111-1307, USA. */ char * pnt_ = (C), * pnt1_; \ pnt1_ = pnt_ - 1; \ while (*++pnt1_) \ - if ((*pnt1_ >= 'A' && *pnt1_ <= 'Z')) *pnt1_ |= 0x20; \ + if (ISUPPER (*pnt1_)) *pnt1_ = TOLOWER (*pnt1_); \ pnt1_ = strrchr (pnt_, ']'); \ pnt1_ = (pnt1_ == 0 ? strrchr (pnt_, '>') : pnt1_); \ pnt1_ = (pnt1_ == 0 ? strrchr (pnt_, ':') : pnt1_); \ |