Changeset 3966 for trunk/ProjectFortress/LibraryBuiltin
- Timestamp:
- 07/16/09 14:18:47 (4 months ago)
- Location:
- trunk/ProjectFortress/LibraryBuiltin
- Files:
-
- 2 modified
-
CompilerBuiltin.fsi (modified) (1 diff)
-
CompilerBuiltin.fss (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ProjectFortress/LibraryBuiltin/CompilerBuiltin.fsi
r3887 r3966 52 52 opr juxtaposition(self, other:ZZ32): ZZ32 53 53 opr DOT(self, other:ZZ32): ZZ32 54 opr DIV(self, other:ZZ32): ZZ32 54 55 end 55 56 -
trunk/ProjectFortress/LibraryBuiltin/CompilerBuiltin.fss
r3887 r3966 24 24 simpleIntArith.intSub => jIntSub, 25 25 simpleIntArith.intMul => jIntMul, 26 simpleIntArith.intDiv => jIntDiv, 26 27 simpleIntArith.intLT => jIntLT, 27 28 simpleIntArith.intLE => jIntLE, … … 66 67 opr juxtaposition(self, other:ZZ32): ZZ32 = jIntMul(self,other) 67 68 opr DOT(self, other:ZZ32): ZZ32 = jIntMul(self,other) 69 opr DIV(self, other:ZZ32): ZZ32 = jIntDiv(self,other) 68 70 end 69 71

