GenericFPURoundMode.cpp 466 B

123456789101112131415161718192021222324252627282930
  1. // Copyright 2003 Dolphin Emulator Project
  2. // Licensed under GPLv2+
  3. // Refer to the license.txt file included.
  4. #include "Common/CommonTypes.h"
  5. #include "Common/FPURoundMode.h"
  6. // Generic, do nothing
  7. namespace FPURoundMode
  8. {
  9. void SetRoundMode(int mode)
  10. {
  11. }
  12. void SetPrecisionMode(PrecisionMode mode)
  13. {
  14. }
  15. void SetSIMDMode(int rounding_mode, bool non_ieee_mode)
  16. {
  17. }
  18. void SaveSIMDState()
  19. {
  20. }
  21. void LoadSIMDState()
  22. {
  23. }
  24. void LoadDefaultSIMDState()
  25. {
  26. }
  27. }