Subversion Repositories HelenOS

Rev

Rev 1031 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1031 Rev 1657
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
-
 
29
 /** @addtogroup softfloatamd64 amd64  
-
 
30
 * @ingroup sfl
-
 
31
 * @brief softfloat architecture dependent definitions
-
 
32
 * @{
-
 
33
 */
-
 
34
/** @file
-
 
35
 */
-
 
36
 
29
#ifndef __SOFTFLOAT_FUNCTIONS_H__
37
#ifndef __SOFTFLOAT_FUNCTIONS_H__
30
#define __SOFTFLOAT_FUNCTIONS_H__
38
#define __SOFTFLOAT_FUNCTIONS_H__
31
 
39
 
32
#define float32_to_int(X) float32_to_int32(X);
40
#define float32_to_int(X) float32_to_int32(X);
33
#define float32_to_long(X) float32_to_int64(X);
41
#define float32_to_long(X) float32_to_int64(X);
Line 61... Line 69...
61
#define ulong_to_float64(X) uint64_to_float64(X);
69
#define ulong_to_float64(X) uint64_to_float64(X);
62
#define ulonglong_to_float64(X) uint64_to_float64(X);
70
#define ulonglong_to_float64(X) uint64_to_float64(X);
63
 
71
 
64
#endif
72
#endif
65
 
73
 
-
 
74
 
-
 
75
 /** @}
-
 
76
 */
-
 
77