comparison gcc/tree-ssa-scopedtables.h @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Header file for SSA dominator optimizations. 1 /* Header file for SSA dominator optimizations.
2 Copyright (C) 2013-2018 Free Software Foundation, Inc. 2 Copyright (C) 2013-2020 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
94 /* The hash value for RHS. */ 94 /* The hash value for RHS. */
95 hashval_t m_hash; 95 hashval_t m_hash;
96 96
97 /* A unique stamp, typically the address of the hash 97 /* A unique stamp, typically the address of the hash
98 element itself, used in removing entries from the table. */ 98 element itself, used in removing entries from the table. */
99 struct expr_hash_elt *m_stamp; 99 class expr_hash_elt *m_stamp;
100 100
101 /* We should never be making assignments between objects in this class. 101 /* We should never be making assignments between objects in this class.
102 Though it might allow us to exploit C++11 move semantics if we 102 Though it might allow us to exploit C++11 move semantics if we
103 defined the move constructor and move assignment operator. */ 103 defined the move constructor and move assignment operator. */
104 expr_hash_elt& operator= (const expr_hash_elt&); 104 expr_hash_elt& operator= (const expr_hash_elt&);