tree-ssa-ccp.h 1.1 KB

1234567891011121314151617181920212223242526272829
  1. /* Copyright (C) 2016-2019 Free Software Foundation, Inc.
  2. This file is part of GCC.
  3. GCC is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU General Public License as published by the
  5. Free Software Foundation; either version 3, or (at your option) any
  6. later version.
  7. GCC is distributed in the hope that it will be useful, but WITHOUT
  8. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  10. for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with GCC; see the file COPYING3. If not see
  13. <http://www.gnu.org/licenses/>. */
  14. #ifndef TREE_SSA_CCP_H
  15. #define TREE_SSA_CCP_H
  16. void bit_value_binop (enum tree_code, signop, int, widest_int *, widest_int *,
  17. signop, int, const widest_int &, const widest_int &,
  18. signop, int, const widest_int &, const widest_int &);
  19. void bit_value_unop (enum tree_code, signop, int, widest_int *, widest_int *,
  20. signop, int, const widest_int &, const widest_int &);
  21. #endif