xref: /netbsd-src/external/gpl3/gcc.old/dist/gcc/tree-ssa-dce.h (revision 4c3eb207d36f67d31994830c0a694161fc1ca39b)
1*4c3eb207Smrg /* Copyright (C) 2017-2020 Free Software Foundation, Inc.
2cef8759bSmrg 
3cef8759bSmrg This file is part of GCC.
4cef8759bSmrg 
5cef8759bSmrg GCC is free software; you can redistribute it and/or modify it
6cef8759bSmrg under the terms of the GNU General Public License as published by the
7cef8759bSmrg Free Software Foundation; either version 3, or (at your option) any
8cef8759bSmrg later version.
9cef8759bSmrg 
10cef8759bSmrg GCC is distributed in the hope that it will be useful, but WITHOUT
11cef8759bSmrg ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12cef8759bSmrg FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13cef8759bSmrg for more details.
14cef8759bSmrg 
15cef8759bSmrg You should have received a copy of the GNU General Public License
16cef8759bSmrg along with GCC; see the file COPYING3.  If not see
17cef8759bSmrg <http://www.gnu.org/licenses/>.  */
18cef8759bSmrg 
19cef8759bSmrg #ifndef TREE_SSA_DCE_H
20cef8759bSmrg #define TREE_SSA_DCE_H
21cef8759bSmrg extern void simple_dce_from_worklist (bitmap);
22cef8759bSmrg #endif
23