diff options
author | Tom Tromey <tromey@redhat.com> | 2008-02-20 02:16:43 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2008-02-20 02:16:43 +0000 |
commit | 2bf41bf05df81d26e70bca9642c065cd90b49be7 (patch) | |
tree | a0f5aee41aeac0578015bd28b69be97666cfa9bc /libcpp/traditional.c | |
parent | 18ca3965e9f2a024baca017763ddfa4342ef499d (diff) | |
download | gcc-2bf41bf05df81d26e70bca9642c065cd90b49be7.zip gcc-2bf41bf05df81d26e70bca9642c065cd90b49be7.tar.gz gcc-2bf41bf05df81d26e70bca9642c065cd90b49be7.tar.bz2 |
traditional.c (lex_identifier): Use CPP_HASHNODE.
* traditional.c (lex_identifier): Use CPP_HASHNODE.
* lex.c (lex_identifier): Use CPP_HASHNODE.
* include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Wrap in
do-while.
* identifiers.c (alloc_node): Change return type.
(_cpp_init_hashtable): Don't cast 'alloc_node'.
(proxy_assertion_broken): New declaration.
(cpp_forall_identifiers): Move comment.
* line-map.c (linemap_add): Comment fix.
(linemap_line_start): Indentation fix.
From-SVN: r132467
Diffstat (limited to 'libcpp/traditional.c')
-rw-r--r-- | libcpp/traditional.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/traditional.c b/libcpp/traditional.c index 6c4dda1..1a38425 100644 --- a/libcpp/traditional.c +++ b/libcpp/traditional.c @@ -253,8 +253,8 @@ lex_identifier (cpp_reader *pfile, const uchar *cur) CUR (pfile->context) = cur; len = out - pfile->out.cur; - result = (cpp_hashnode *) ht_lookup (pfile->hash_table, pfile->out.cur, - len, HT_ALLOC); + result = CPP_HASHNODE (ht_lookup (pfile->hash_table, pfile->out.cur, + len, HT_ALLOC)); pfile->out.cur = out; return result; } |