Author: paultcochrane
Date: Sun Apr 8 11:48:39 2007
New Revision: 18041
Modified:
trunk/languages/dotnet/ops/dotnet.ops
Log:
[dotnet] converted TODO item into RT ticket
Modified: trunk/languages/dotnet/ops/dotnet.ops
==============================================================================
--- trunk/languages/dotnet/ops/dotnet.ops (original)
+++ trunk/languages/dotnet/ops/dotnet.ops Sun Apr 8 11:48:39 2007
@@ -1177,7 +1177,7 @@
}
inline op net_conv_ovf_i_un(out INT, in INT) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
Parrot_UInt4 tmp = (Parrot_UInt4) $2;
if (tmp > 0x7FFFFFFF)
{
@@ -1193,7 +1193,7 @@
}
inline op net_conv_ovf_u_un(out INT, in INT) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
Parrot_UInt4 tmp = (Parrot_UInt4) $2;
if (tmp > 0xFFFFFFFF)
{
@@ -1428,7 +1428,7 @@
}
inline op net_conv_ovf_i(out INT, in INT) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
Parrot_Int4 tmp = (Parrot_Int4) $2;
if (tmp > 0x7FFFFFFF || tmp < ((Parrot_Int4) 0x80000000))
{
@@ -1444,7 +1444,7 @@
}
inline op net_conv_ovf_i(out INT, invar PMC) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
int ok = 1;
if ($2->vtable->isa(interp, $2,
string_from_const_cstring(interp, "Int64", 0)))
@@ -1479,7 +1479,7 @@
}
inline op net_conv_ovf_u(out INT, in INT) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
Parrot_Int4 tmp = (Parrot_Int4) $2;
if (tmp < 0 || tmp > 0xFFFFFFFF)
{
@@ -1495,7 +1495,7 @@
}
inline op net_conv_ovf_u(out INT, invar PMC) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
int ok = 1;
if ($2->vtable->isa(interp, $2,
string_from_const_cstring(interp, "Int64", 0)))
@@ -1651,7 +1651,7 @@
}
inline op net_conv_ovf_i(out INT, in NUM) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
if ($2 > ((Parrot_Float) 0x7FFFFFFF) || $2 < ((Parrot_Float)
((Parrot_Int4) 0x80000000)))
{
opcode_t *ret = expr NEXT();
@@ -1666,7 +1666,7 @@
}
inline op net_conv_ovf_u(out INT, in NUM) :base_core {
- /* XXX TO DO Fix for 64-bit architecture. */
+ /* RT#42349 Fix for 64-bit architecture. */
if ($2 < 0 || $2 > ((Parrot_Float) 0xFFFFFFFF))
{
opcode_t *ret = expr NEXT();