diff options
author | Dehao Chen <dehao@google.com> | 2013-05-24 15:52:31 +0000 |
---|---|---|
committer | Dehao Chen <dehao@gcc.gnu.org> | 2013-05-24 15:52:31 +0000 |
commit | 3ad695b98d098113b21c376b881c21520bd6a04a (patch) | |
tree | 8295d2a2c136450086f0a9ed716eaa65692317d9 /gcc/tree-cfg.c | |
parent | 8233805962efaca360502989a390aef6825666ab (diff) | |
download | gcc-3ad695b98d098113b21c376b881c21520bd6a04a.zip gcc-3ad695b98d098113b21c376b881c21520bd6a04a.tar.gz gcc-3ad695b98d098113b21c376b881c21520bd6a04a.tar.bz2 |
Fix the typo of discriminator.
2013-05-24 Dehao Chen <dehao@google.com>
* gcc/tree-cfg.c (locus_discrim_map): Fix the typo.
(locus_discrim_hasher): Likewise.
(locus_discrim_hasher::hash): Likewise.
(locus_discrim_hasher::equal): Likewise.
From-SVN: r199300
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index c3b4a82..f38a32a 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -91,7 +91,7 @@ struct locus_discrim_map /* Hashtable helpers. */ -struct locus_descrim_hasher : typed_free_remove <locus_discrim_map> +struct locus_discrim_hasher : typed_free_remove <locus_discrim_map> { typedef locus_discrim_map value_type; typedef locus_discrim_map compare_type; @@ -103,7 +103,7 @@ struct locus_descrim_hasher : typed_free_remove <locus_discrim_map> a hash table entry that maps a location_t to a discriminator. */ inline hashval_t -locus_descrim_hasher::hash (const value_type *item) +locus_discrim_hasher::hash (const value_type *item) { return LOCATION_LINE (item->locus); } @@ -112,12 +112,12 @@ locus_descrim_hasher::hash (const value_type *item) point to the two hash table entries to compare. */ inline bool -locus_descrim_hasher::equal (const value_type *a, const compare_type *b) +locus_discrim_hasher::equal (const value_type *a, const compare_type *b) { return LOCATION_LINE (a->locus) == LOCATION_LINE (b->locus); } -static hash_table <locus_descrim_hasher> discriminator_per_locus; +static hash_table <locus_discrim_hasher> discriminator_per_locus; /* Basic blocks and flowgraphs. */ static void make_blocks (gimple_seq); |