1 /* ****************************************************** 2 * * 3 * * 4 * Copyright (c) 1972 by Massachusetts Institute of * 5 * Technology and Honeywell Information Systems, Inc. * 6 * * 7 * * 8 ****************************************************** */ 9 10 dxp1_: procedure (base, exponent) returns (float binary (63)); 11 12 /* compute double-precision floating-point base ** integer exponent */ 13 declare base float binary (63), 14 exponent fixed binary (17); 15 16 return(base ** exponent); 17 end;