comparison gcc/gsstruct.def @ 55:77e2b8dfacca gcc-4.4.5

update it from 4.4.3 to 4.5.0
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Fri, 12 Feb 2010 23:39:51 +0900
parents a06113de4d67
children b7f97abdc517
comparison
equal deleted inserted replaced
52:c156f1bd5cd9 55:77e2b8dfacca
19 You should have received a copy of the GNU General Public License 19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see 20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */ 21 <http://www.gnu.org/licenses/>. */
22 22
23 /* The format of this file is 23 /* The format of this file is
24 DEFGSSTRUCT(GSS_enumeration value, printable name). 24 DEFGSSTRUCT(GSS enumeration value, structure name, has-tree-operands).
25 Each enum value should correspond with a single member of the union 25 Each enum value should correspond with a single member of the union
26 gimple_statement_d. */ 26 gimple_statement_d. */
27 27
28 DEFGSSTRUCT(GSS_BASE, "base") 28 DEFGSSTRUCT(GSS_BASE, gimple_statement_base, false)
29 DEFGSSTRUCT(GSS_WITH_OPS, "with_ops") 29 DEFGSSTRUCT(GSS_WITH_OPS, gimple_statement_with_ops, true)
30 DEFGSSTRUCT(GSS_WITH_MEM_OPS, "with_mem_ops") 30 DEFGSSTRUCT(GSS_WITH_MEM_OPS_BASE, gimple_statement_with_memory_ops_base, false)
31 DEFGSSTRUCT(GSS_OMP, "omp") 31 DEFGSSTRUCT(GSS_WITH_MEM_OPS, gimple_statement_with_memory_ops, true)
32 DEFGSSTRUCT(GSS_BIND, "bind") 32 DEFGSSTRUCT(GSS_ASM, gimple_statement_asm, true)
33 DEFGSSTRUCT(GSS_CATCH, "catch") 33 DEFGSSTRUCT(GSS_BIND, gimple_statement_bind, false)
34 DEFGSSTRUCT(GSS_EH_FILTER, "eh_filter") 34 DEFGSSTRUCT(GSS_PHI, gimple_statement_phi, false)
35 DEFGSSTRUCT(GSS_PHI, "phi") 35 DEFGSSTRUCT(GSS_TRY, gimple_statement_try, false)
36 DEFGSSTRUCT(GSS_RESX, "resx") 36 DEFGSSTRUCT(GSS_CATCH, gimple_statement_catch, false)
37 DEFGSSTRUCT(GSS_TRY, "try") 37 DEFGSSTRUCT(GSS_EH_FILTER, gimple_statement_eh_filter, false)
38 DEFGSSTRUCT(GSS_WCE, "with_cleanup_expression") 38 DEFGSSTRUCT(GSS_EH_MNT, gimple_statement_eh_mnt, false)
39 DEFGSSTRUCT(GSS_ASM, "asm") 39 DEFGSSTRUCT(GSS_EH_CTRL, gimple_statement_eh_ctrl, false)
40 DEFGSSTRUCT(GSS_OMP_CRITICAL, "omp_critical") 40 DEFGSSTRUCT(GSS_WCE, gimple_statement_wce, false)
41 DEFGSSTRUCT(GSS_OMP_FOR, "omp_for") 41 DEFGSSTRUCT(GSS_OMP, gimple_statement_omp, false)
42 DEFGSSTRUCT(GSS_OMP_PARALLEL, "omp_parallel") 42 DEFGSSTRUCT(GSS_OMP_CRITICAL, gimple_statement_omp_critical, false)
43 DEFGSSTRUCT(GSS_OMP_TASK, "omp_task") 43 DEFGSSTRUCT(GSS_OMP_FOR, gimple_statement_omp_for, false)
44 DEFGSSTRUCT(GSS_OMP_SECTIONS, "sections") 44 DEFGSSTRUCT(GSS_OMP_PARALLEL, gimple_statement_omp_parallel, false)
45 DEFGSSTRUCT(GSS_OMP_SINGLE, "single") 45 DEFGSSTRUCT(GSS_OMP_TASK, gimple_statement_omp_task, false)
46 DEFGSSTRUCT(GSS_OMP_CONTINUE, "omp_continue") 46 DEFGSSTRUCT(GSS_OMP_SECTIONS, gimple_statement_omp_sections, false)
47 DEFGSSTRUCT(GSS_OMP_ATOMIC_LOAD, "omp_atomic_load") 47 DEFGSSTRUCT(GSS_OMP_SINGLE, gimple_statement_omp_single, false)
48 DEFGSSTRUCT(GSS_OMP_ATOMIC_STORE, "omp_atomic_store") 48 DEFGSSTRUCT(GSS_OMP_CONTINUE, gimple_statement_omp_continue, false)
49 DEFGSSTRUCT(GSS_OMP_ATOMIC_LOAD, gimple_statement_omp_atomic_load, false)
50 DEFGSSTRUCT(GSS_OMP_ATOMIC_STORE, gimple_statement_omp_atomic_store, false)