libgcc_aeabi.c 1010 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* -*- mode: c; tab-width: 4; indent-tabs-mode: t; -*- */
  2. /* SCE CONFIDENTIAL
  3. $PSLibId$
  4. *
  5. * Copyright (C) 2009 Sony Computer Entertainment Inc.
  6. * All Rights Reserved.
  7. *
  8. */
  9. /*
  10. * $Id: libgcc_aeabi.c 1287 2012-04-26 01:33:37Z fujihiro $
  11. * $HeadURL: svn+ssh://svn/psp2/webcore/trunk/psp2-app/libgcc_aeabi.c $
  12. * $LastChangedBy: fujihiro $
  13. * $LastChangedDate: 2012-04-26 10:33:37 +0900 (木, 26 4 2012) $
  14. * $LastChangedRevision: 1287 $
  15. *
  16. * the standard compiler helper function library
  17. *
  18. * Version Date Design Log
  19. * --------------------------------------------------------------------
  20. * 0.00 2009-11-19 onoda the initial version
  21. */
  22. #include <kernel.h>
  23. void __cxa_pure_virtual(void);
  24. /* Pure virtual function calls */
  25. void __cxa_pure_virtual(void)
  26. {
  27. __breakpoint(0x80);
  28. return;
  29. }
  30. /* Local variables: */
  31. /* tab-width: 4 */
  32. /* End: */
  33. /* vi:set tabstop=4: */