1 /* Implementation of gcc_rich_location class
2 Copyright (C) 2014-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
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
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
31 #include "tree-core.h"
33 #include "diagnostic-core.h"
34 #include "gcc-rich-location.h"
35 #include "print-tree.h"
36 #include "pretty-print.h"
39 #include "diagnostic.h"
41 /* Add a range to the rich_location, covering expression EXPR. */
44 gcc_rich_location::add_expr (tree expr
)
48 if (CAN_HAVE_RANGE_P (expr
))
49 add_range (EXPR_LOCATION (expr
), false);
52 /* If T is an expression, add a range for it to the rich_location. */
55 gcc_rich_location::maybe_add_expr (tree t
)
61 /* Add a fixit hint suggesting replacing the range at MISSPELLED_TOKEN_LOC
62 with the identifier HINT_ID. */
65 gcc_rich_location::add_fixit_misspelled_id (location_t misspelled_token_loc
,
68 gcc_assert (TREE_CODE (hint_id
) == IDENTIFIER_NODE
);
70 add_fixit_replace (misspelled_token_loc
, IDENTIFIER_POINTER (hint_id
));