gimple-streamer.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* Data structures and functions for streaming GIMPLE.
  2. Copyright (C) 2011-2019 Free Software Foundation, Inc.
  3. Contributed by Diego Novillo <dnovillo@google.com>
  4. This file is part of GCC.
  5. GCC is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU General Public License as published by the Free
  7. Software Foundation; either version 3, or (at your option) any later
  8. version.
  9. GCC is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  12. for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with GCC; see the file COPYING3. If not see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef GCC_GIMPLE_STREAMER_H
  17. #define GCC_GIMPLE_STREAMER_H
  18. #include "tree-streamer.h"
  19. /* In gimple-streamer-in.c */
  20. void input_bb (struct lto_input_block *, enum LTO_tags, struct data_in *,
  21. struct function *, int);
  22. /* In gimple-streamer-out.c */
  23. void output_bb (struct output_block *, basic_block, struct function *);
  24. #endif /* GCC_GIMPLE_STREAMER_H */