___fpscr_values.S 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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, write to the Free Software Foundation, Inc.,
  15. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. */
  17. #include <features.h>
  18. .data
  19. #if defined(__CONFIG_SH4__)
  20. .global ___fpscr_values
  21. .type ___fpscr_values,@object
  22. .size ___fpscr_values,8
  23. ___fpscr_values:
  24. .long 0
  25. .long 0x80000
  26. .weak __fpscr_values
  27. __fpscr_values = ___fpscr_values
  28. #endif