- Timestamp:
- Apr 14, 1998, 5:15:29 PM (26 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 9388d44d66568ee4423a1b5b0cb6898306a4928b
- Parents:
- c41230e528f2fd8acea402910a80fb248bf9461c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/imm.h
rc41230 rc1784d 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: imm.h,v 1.1 2 1997-12-17 11:10:02 schmidtExp $ */2 /* $Id: imm.h,v 1.13 1998-04-14 15:15:29 pohl Exp $ */ 3 3 4 4 #ifndef INCL_IMM_H … … 27 27 const int MINIMMEDIATE = -268435454; // -2^28-2 28 28 const int MAXIMMEDIATE = 268435454; // 2^28-2 29 #ifdef macintosh 30 const INT64 MINIMMEDIATELL = -268435454; 31 const INT64 MAXIMMEDIATELL = 268435454; 32 #elif defined WINNT 29 #ifndef __MWERKS__ 30 #ifdef WINNT 33 31 const INT64 MINIMMEDIATELL = -268435454i64; 34 32 const INT64 MAXIMMEDIATELL = 268435454i64; … … 36 34 const INT64 MINIMMEDIATELL = -268435454LL; 37 35 const INT64 MAXIMMEDIATELL = 268435454LL; 36 #endif 38 37 #endif 39 38 … … 268 267 } 269 268 269 #ifdef __MWERKS__ 270 InternalCF * imm_mul ( InternalCF * lhs, InternalCF * rhs ); 271 #else 270 272 inline InternalCF * imm_mul ( InternalCF * lhs, InternalCF * rhs ) 271 273 { … … 278 280 return int2imm( (int)result ); 279 281 } 282 #endif 280 283 281 284 inline InternalCF * imm_mul_p ( const InternalCF * const lhs, const InternalCF * const rhs )
Note: See TracChangeset
for help on using the changeset viewer.