sol2-stubs.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* Stubs for C++ specific Solaris system support.
  2. Copyright (C) 2011-2015 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3, or (at your option)
  7. any later version.
  8. GCC is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public 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. #include "config.h"
  16. #include "system.h"
  17. #include "coretypes.h"
  18. #include "hash-set.h"
  19. #include "machmode.h"
  20. #include "vec.h"
  21. #include "double-int.h"
  22. #include "input.h"
  23. #include "alias.h"
  24. #include "symtab.h"
  25. #include "options.h"
  26. #include "wide-int.h"
  27. #include "inchash.h"
  28. #include "tree.h"
  29. #include "tm.h"
  30. #include "tm_p.h"
  31. /* Stub implemenation of TARGET_CXX_DECL_MANGLING_CONTEXT for non-C++
  32. frontends. */
  33. tree
  34. solaris_cxx_decl_mangling_context (const_tree decl ATTRIBUTE_UNUSED)
  35. {
  36. return NULL_TREE;
  37. }