comparison gcc/read-md.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* MD reader for GCC. 1 /* MD reader for GCC.
2 Copyright (C) 1987-2017 Free Software Foundation, Inc. 2 Copyright (C) 1987-2018 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
1001 m_read_md_lineno (0), 1001 m_read_md_lineno (0),
1002 m_read_md_colno (0), 1002 m_read_md_colno (0),
1003 m_first_dir_md_include (NULL), 1003 m_first_dir_md_include (NULL),
1004 m_last_dir_md_include_ptr (&m_first_dir_md_include), 1004 m_last_dir_md_include_ptr (&m_first_dir_md_include),
1005 m_first_line (0), 1005 m_first_line (0),
1006 m_last_line (0) 1006 m_last_line (0),
1007 m_first_overload (NULL),
1008 m_next_overload_ptr (&m_first_overload),
1009 m_overloads_htab (NULL)
1007 { 1010 {
1008 /* Set the global singleton pointer. */ 1011 /* Set the global singleton pointer. */
1009 md_reader_ptr = this; 1012 md_reader_ptr = this;
1010 1013
1011 obstack_init (&m_string_obstack); 1014 obstack_init (&m_string_obstack);