File: numberOfRoundingModes.h

package info (click to toggle)
symfpu 0.0~git20190517.8fbe139-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 448 kB
  • sloc: ansic: 2,280; cpp: 290; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
** Copyright (C) 2018 Martin Brain
**
** See the file LICENSE for licensing information.
*/

/*
** numberOfRoundingModes.h
**
** Martin Brain
** martin.brain@cs.ox.ac.uk
** 20/05/15
**
** We need a better solution...
**
*/

#ifndef SYMFPU_NUMBEROFROUNDINGMODES
#define SYMFPU_NUMBEROFROUNDINGMODES

namespace symfpu {


// Currently support 5 rounding modes
// TODO : This shouldn't be a preprocessor constant

#define SYMFPU_NUMBER_OF_ROUNDING_MODES 5

}

#endif