Update ChangeLog and version files for release
[official-gcc.git] / gcc / gcc-rich-location.c
bloba03ce0ee5fa9d9071a6194280e85fe6e1d5b5c86
1 /* Implementation of gcc_rich_location class
2 Copyright (C) 2014-2016 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
9 version.
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
14 for more details.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "hash-set.h"
26 #include "machmode.h"
27 #include "vec.h"
28 #include "double-int.h"
29 #include "input.h"
30 #include "alias.h"
31 #include "symtab.h"
32 #include "wide-int.h"
33 #include "inchash.h"
34 #include "tree-core.h"
35 #include "tree.h"
36 #include "diagnostic-core.h"
37 #include "gcc-rich-location.h"
38 #include "print-tree.h"
39 #include "pretty-print.h"
40 #include "intl.h"
41 #include "cpplib.h"
42 #include "diagnostic.h"
44 /* Add a range to the rich_location, covering expression EXPR. */
46 void
47 gcc_rich_location::add_expr (tree expr)
49 gcc_assert (expr);
51 if (CAN_HAVE_RANGE_P (expr))
52 add_range (EXPR_LOCATION (expr), false);
55 /* If T is an expression, add a range for it to the rich_location. */
57 void
58 gcc_rich_location::maybe_add_expr (tree t)
60 if (EXPR_P (t))
61 add_expr (t);