aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/src/simp.c
diff options
context:
space:
mode:
authoricculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-28 09:53:09 +0000
committericculus <icculus@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-11-28 09:53:09 +0000
commit6fbbf139bb874dfa2f31ab04c68157abcfe20351 (patch)
tree2ac48394e0c2c0d7784ddecfd751b405eb986930 /code/tools/lcc/src/simp.c
parenta1ffde619ca3a48d7a4a88e17b5fc4328f0f3c71 (diff)
downloadioquake3-aero-6fbbf139bb874dfa2f31ab04c68157abcfe20351.tar.gz
ioquake3-aero-6fbbf139bb874dfa2f31ab04c68157abcfe20351.zip
Fixed some compiler warnings in lcc...mostly "long double" stuff.
git-svn-id: svn://svn.icculus.org/quake3/trunk@384 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/tools/lcc/src/simp.c')
-rw-r--r--code/tools/lcc/src/simp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/code/tools/lcc/src/simp.c b/code/tools/lcc/src/simp.c
index 227dfbb..ea26ab6 100644
--- a/code/tools/lcc/src/simp.c
+++ b/code/tools/lcc/src/simp.c
@@ -246,15 +246,15 @@ Tree simplify(int op, Type ty, Tree l, Tree r) {
break;
case CVI+F:
- xcvtcnst(I,l->u.v.i,ty,d,(long double)l->u.v.i);
+ xcvtcnst(I,l->u.v.i,ty,d,(double)l->u.v.i);
case CVU+F:
- xcvtcnst(U,l->u.v.u,ty,d,(long double)l->u.v.u);
+ xcvtcnst(U,l->u.v.u,ty,d,(double)l->u.v.u);
break;
case CVF+I:
xcvtcnst(F,l->u.v.d,ty,i,(long)l->u.v.d);
break;
case CVF+F: {
- float d;
+ float d = 0.0f;
if (l->op == CNST+F) {
if (l->u.v.d < ty->u.sym->u.limits.min.d)
d = ty->u.sym->u.limits.min.d;
@@ -263,7 +263,7 @@ Tree simplify(int op, Type ty, Tree l, Tree r) {
else
d = l->u.v.d;
}
- xcvtcnst(F,l->u.v.d,ty,d,(long double)d);
+ xcvtcnst(F,l->u.v.d,ty,d,(double)d);
break;
}
case BAND+U: