diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-04 13:12:14 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-04 13:12:14 +0000 |
commit | 97aeb9418459d448f4fb96507b7268c9bb159b7e (patch) | |
tree | a27649c892d3f0e47949f090dd3a13b53b652f96 /pod/perlop.pod | |
parent | 7ad24799bd897085fdbfd306e741b7b2afabd060 (diff) | |
download | perl-97aeb9418459d448f4fb96507b7268c9bb159b7e.tar.gz |
Enable 64-bit clean bit ops.
(Disables the t/op/misc.t substest 3 in 64-bit platforms.)
p4raw-id: //depot/cfgperl@4070
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 2b5b789ea6..6c2cb3393a 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -221,14 +221,14 @@ Binary "." concatenates two strings. Binary "<<" returns the value of its left argument shifted left by the number of bits specified by the right argument. Arguments should be integers. (See also L<Integer Arithmetic>.) Shifting more than the -width of the available integer in bits (usually 32 or 64) produces -undefined (machine dependent) results. +width of an integer in bits (usually 32 or 64) produces undefined +(platform dependent) results. Binary ">>" returns the value of its left argument shifted right by the number of bits specified by the right argument. Arguments should -be integers. (See also L<Integer Arithmetic>.) Shifting more than the -width of the available integer in bits (usually 32 or 64) produces -undefined (machine dependent) results. +be integers. (See also L<Integer Arithmetic>.) Shifting more than +the width of an integer in bits (usually 32 or 64) produces undefined +(platform dependent) results. =head2 Named Unary Operators |