___fpscr_values.S 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /* Startup code for SH & ELF.
  2. Copyright (C) 1999 Free Software Foundation, Inc.
  3. Copyright (C) 2001 Hewlett-Packard Australia
  4. Copyright (C) 2002 Stefan Allius
  5. This program is free software; you can redistribute it and/or modify it under
  6. the terms of the GNU Library General Public License as published by the Free
  7. Software Foundation; either version 2 of the License, or (at your option) any
  8. later version.
  9. This program is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  11. FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  12. details.
  13. You should have received a copy of the GNU Library General Public License
  14. along with this program; if not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include <features.h>
  17. .data
  18. #ifdef __SH4__
  19. .global ___fpscr_values
  20. .type ___fpscr_values,@object
  21. .size ___fpscr_values,8
  22. ___fpscr_values:
  23. .long 0
  24. .long 0x80000
  25. .weak __fpscr_values
  26. __fpscr_values = ___fpscr_values
  27. #endif