rx-opts.h 887 B

1234567891011121314151617181920212223242526272829303132
  1. /* GCC option-handling definitions for the Renesas RX processor.
  2. Copyright (C) 2008-2015 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published
  6. by the Free Software Foundation; either version 3, or (at your
  7. option) any later version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  11. License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef RX_OPTS_H
  16. #define RX_OPTS_H
  17. enum rx_cpu_types
  18. {
  19. RX600,
  20. RX610,
  21. RX200,
  22. RX100
  23. };
  24. #endif