comparison src/share/vm/opto/addnode.cpp @ 4045:a6eef545f1a2

7103224: collision between __LEAF define in interfaceSupport.hpp and /usr/include/sys/cdefs.h with gcc Reviewed-by: never Contributed-by: Omair Majid <omajid@redhat.com>
author never
date Tue, 25 Oct 2011 08:17:15 -0700
parents f95d63e2154a
children e626685e9f6c
comparison
equal deleted inserted replaced
4044:2ec638646e86 4045:a6eef545f1a2
31 #include "opto/mulnode.hpp" 31 #include "opto/mulnode.hpp"
32 #include "opto/phaseX.hpp" 32 #include "opto/phaseX.hpp"
33 #include "opto/subnode.hpp" 33 #include "opto/subnode.hpp"
34 34
35 // Portions of code courtesy of Clifford Click 35 // Portions of code courtesy of Clifford Click
36
37 #define MAXFLOAT ((float)3.40282346638528860e+38)
38 36
39 // Classic Add functionality. This covers all the usual 'add' behaviors for 37 // Classic Add functionality. This covers all the usual 'add' behaviors for
40 // an algebraic ring. Add-integer, add-float, add-double, and binary-or are 38 // an algebraic ring. Add-integer, add-float, add-double, and binary-or are
41 // all inherited from this class. The various identity values are supplied 39 // all inherited from this class. The various identity values are supplied
42 // by virtual functions. 40 // by virtual functions.