jdk/make/java/nio/genBuffer.sh
changeset 4502 18f387917b89
parent 4115 e09be02771b6
child 5506 202f599c92aa
--- a/jdk/make/java/nio/genBuffer.sh	Tue Dec 08 12:40:30 2009 +0000
+++ b/jdk/make/java/nio/genBuffer.sh	Tue Dec 08 12:41:01 2009 -0800
@@ -44,6 +44,7 @@
 
 case $type in
   char)  fulltype=character;;
+  int)   fulltype=integer;;
   *)     fulltype=$type;;
 esac
 
@@ -54,6 +55,11 @@
   long | double)  LBPV=3;;
 esac
 
+case $type in 
+  float|double) floatingPointOrIntegralType=floatingPointType;;
+  *)            floatingPointOrIntegralType=integralType;;
+esac
+
 typesAndBits() {
 
   type="$1"; BO="$2"
@@ -101,6 +107,7 @@
 
 $SPP <$SRC >$DST \
   -K$type \
+  -K$floatingPointOrIntegralType \
   -Dtype=$type \
   -DType=$Type \
   -Dfulltype=$fulltype \