]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ipa-reference.h
Put the CL into the right dir.
[thirdparty/gcc.git] / gcc / ipa-reference.h
CommitLineData
f7d118a9 1/* IPA handling of references.
fbd26352 2 Copyright (C) 2004-2019 Free Software Foundation, Inc.
f7d118a9 3 Contributed by Kenneth Zadeck <zadeck@naturalbridge.com>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
8c4c00c1 9Software Foundation; either version 3, or (at your option) any later
f7d118a9 10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
8c4c00c1 18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
f7d118a9 20
21#ifndef GCC_IPA_REFERENCE_H
22#define GCC_IPA_REFERENCE_H
f7d118a9 23
f7d118a9 24/* In ipa-reference.c */
86844d6c 25bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
26bitmap ipa_reference_get_not_written_global (struct cgraph_node *fn);
415309e2 27void ipa_reference_c_finalize (void);
f7d118a9 28
a0041abf 29inline int
30ipa_reference_var_uid (tree t)
31{
32 return DECL_UID (symtab_node::get (t)->ultimate_alias_target (NULL)->decl);
33}
34
f7d118a9 35#endif /* GCC_IPA_REFERENCE_H */
36