comparison src/OPERATORS/op-i32-i32.cc @ 4963:573d23f9c9cf

[project @ 2004-09-03 15:43:29 by jwe]
author jwe
date Fri, 03 Sep 2004 15:43:30 +0000
parents 7a3a480e8645
children 269c3d6c0569
comparison
equal deleted inserted replaced
4962:0ab18cbe8b5f 4963:573d23f9c9cf
86 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi16, int32_, int16_); 86 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi16, int32_, int16_);
87 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui16, int32_, uint16_); 87 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui16, int32_, uint16_);
88 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui32, int32_, uint32_); 88 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui32, int32_, uint32_);
89 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi64, int32_, int64_); 89 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmi64, int32_, int64_);
90 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui64, int32_, uint64_); 90 OCTAVE_INSTALL_MM_INT_ASSIGN_OPS (mmui64, int32_, uint64_);
91
92 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, int8);
93 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint8);
94 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, int16);
95 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint16);
96 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint32);
97 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, int64);
98 OCTAVE_INSTALL_SM_INT_ASSIGNCONV (int32, uint64);
91 } 99 }
92 100
93 /* 101 /*
94 ;;; Local Variables: *** 102 ;;; Local Variables: ***
95 ;;; mode: C++ *** 103 ;;; mode: C++ ***