Author: coke Date: Wed Sep 28 15:28:13 2005 New Revision: 9266 Modified: trunk/ops/bit.ops trunk/ops/cmp.ops trunk/ops/math.ops Log: Add a note regarding the type of PMCs created by the n_ variants.
Modified: trunk/ops/bit.ops ============================================================================== --- trunk/ops/bit.ops (original) +++ trunk/ops/bit.ops Wed Sep 28 15:28:13 2005 @@ -15,6 +15,9 @@ or in groups. The variant with an appended B<s> like B<bands> work on strings. +The variants with a prepended B<n_> like <n_bnot> generate a new target PMC. +If possible, they use the appropriate language type, specified with C<.HLL>. + =over 4 =cut Modified: trunk/ops/cmp.ops ============================================================================== --- trunk/ops/cmp.ops (original) +++ trunk/ops/cmp.ops Wed Sep 28 15:28:13 2005 @@ -16,6 +16,9 @@ Operations that compare two registers ag Some of these operations affect control flow directly; others do not. +The variants with a prepended B<n_> like <n_not> generate a new target PMC. +If possible, they use the appropriate language type, specified with C<.HLL>. + =cut ############################################################################### Modified: trunk/ops/math.ops ============================================================================== --- trunk/ops/math.ops (original) +++ trunk/ops/math.ops Wed Sep 28 15:28:13 2005 @@ -18,6 +18,9 @@ math.ops - Mathematical Operations Operations that perform some sort of mathematics, including both basic math and transcendental functions. +The variants with a prepended B<n_> like <n_abs> generate a new target PMC. +If possible, they use the appropriate language type, specified with C<.HLL>. + =head2 General infix operations These operations take an infix operation number and PMC arguments.
