comparison gcc/gensupport.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 /* Declarations for rtx-reader support for gen* routines. 1 /* Declarations for rtx-reader support for gen* routines.
2 Copyright (C) 2000-2018 Free Software Foundation, Inc. 2 Copyright (C) 2000-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
24 24
25 struct obstack; 25 struct obstack;
26 extern struct obstack *rtl_obstack; 26 extern struct obstack *rtl_obstack;
27 27
28 /* Information about an .md define_* rtx. */ 28 /* Information about an .md define_* rtx. */
29 struct md_rtx_info { 29 class md_rtx_info {
30 public:
30 /* The rtx itself. */ 31 /* The rtx itself. */
31 rtx def; 32 rtx def;
32 33
33 /* The location of the first line of the rtx. */ 34 /* The location of the first line of the rtx. */
34 file_location loc; 35 file_location loc;