comparison gcc/cfg.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 /* Control flow graph manipulation code header file. 1 /* Control flow graph manipulation code header file.
2 Copyright (C) 2014-2018 Free Software Foundation, Inc. 2 Copyright (C) 2014-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
120 extern bool original_copy_tables_initialized_p (void); 120 extern bool original_copy_tables_initialized_p (void);
121 extern void set_bb_original (basic_block, basic_block); 121 extern void set_bb_original (basic_block, basic_block);
122 extern basic_block get_bb_original (basic_block); 122 extern basic_block get_bb_original (basic_block);
123 extern void set_bb_copy (basic_block, basic_block); 123 extern void set_bb_copy (basic_block, basic_block);
124 extern basic_block get_bb_copy (basic_block); 124 extern basic_block get_bb_copy (basic_block);
125 void set_loop_copy (struct loop *, struct loop *); 125 void set_loop_copy (class loop *, class loop *);
126 struct loop *get_loop_copy (struct loop *); 126 class loop *get_loop_copy (class loop *);
127 127
128 /* Generic RAII class to allocate a bit from storage of integer type T. 128 /* Generic RAII class to allocate a bit from storage of integer type T.
129 The allocated bit is accessible as mask with the single bit set 129 The allocated bit is accessible as mask with the single bit set
130 via the conversion operator to T. */ 130 via the conversion operator to T. */
131 131