From 8ad7a88c951b0831e3ab0dd37777562718633df3 Mon Sep 17 00:00:00 2001
From: simonmar <unknown>
Date: Thu, 29 Jul 1999 10:01:05 +0000
Subject: [PATCH] [project @ 1999-07-29 10:01:05 by simonmar] Document changes
 to shift operations.

---
 ghc/docs/libraries/Int.sgml  | 8 ++++++++
 ghc/docs/libraries/Word.sgml | 7 +++++++
 2 files changed, 15 insertions(+)

diff --git a/ghc/docs/libraries/Int.sgml b/ghc/docs/libraries/Int.sgml
index 0e29d6cf615e..b26cfe28ce11 100644
--- a/ghc/docs/libraries/Int.sgml
+++ b/ghc/docs/libraries/Int.sgml
@@ -82,6 +82,14 @@ such as <tt/Int/ (see the section of the Haskell report dealing
 with arithmetic sequences) also hold for the <tt/Enum/ instances
 over the various <tt/Int/ types defined here.
 
+<item>
+Right and left shifts by amounts greater than or equal to the width of
+the type result in either zero or -1, depending on the sign of the
+value being shifted.  This is contrary to the behaviour in C, which is
+undefined; a common interpretation is to truncate the shift count to
+the width of the type, for example <tt>1 &lt;&lt; 32 == 1</tt> in some
+C implementations.
+
 <item>
 Hugs does not provide <tt/Int64/ at the moment.
 
diff --git a/ghc/docs/libraries/Word.sgml b/ghc/docs/libraries/Word.sgml
index 79af677ae27b..bf85825f3954 100644
--- a/ghc/docs/libraries/Word.sgml
+++ b/ghc/docs/libraries/Word.sgml
@@ -102,6 +102,13 @@ such as <tt/Int/ (see the section of the Haskell report dealing
 with arithmetic sequences) also hold for the <tt/Enum/ instances
 over the various <tt/Word/ types defined here.
 
+<item>
+Right and left shifts by amounts greater than or equal to the width of
+the type result in a zero result.  This is contrary to the behaviour
+in C, which is undefined; a common interpretation is to truncate
+the shift count to the width of the type, for example <tt>1 &lt;&lt;
+32 == 1</tt> in some C implementations.
+
 </itemize>
 
 <bf/Implementation notes:/
-- 
GitLab