From 5aebbfcee0f6ebd79e08e9a4e0a108023b59e5ae Mon Sep 17 00:00:00 2001 From: sof Date: Tue, 4 May 1999 08:31:53 +0000 Subject: [PATCH] [project @ 1999-05-04 08:31:51 by sof] Updated _casm_ example --- ghc/docs/users_guide/4-03-notes.vsgml | 3 +++ ghc/docs/users_guide/glasgow_exts.vsgml | 19 +++++++++++-------- ghc/docs/users_guide/users_guide.vsgml | 2 ++ 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/ghc/docs/users_guide/4-03-notes.vsgml b/ghc/docs/users_guide/4-03-notes.vsgml index 1430b37..a402be8 100644 --- a/ghc/docs/users_guide/4-03-notes.vsgml +++ b/ghc/docs/users_guide/4-03-notes.vsgml @@ -17,6 +17,9 @@ computations on small integers. The performance of On Win32 platforms, added support for using (and producing) dynamic +link libraries (DLLs) containing ghc-compiled code. + Added @-funbox-strict-fields@ for unboxing/unpacking strict constructor fields. diff --git a/ghc/docs/users_guide/glasgow_exts.vsgml b/ghc/docs/users_guide/glasgow_exts.vsgml index 99eaf5d..e54d9f8 100644 --- a/ghc/docs/users_guide/glasgow_exts.vsgml +++ b/ghc/docs/users_guide/glasgow_exts.vsgml @@ -1,5 +1,5 @@ % -% $Id: glasgow_exts.vsgml,v 1.9 1999/04/29 12:21:50 simonpj Exp $ +% $Id: glasgow_exts.vsgml,v 1.10 1999/05/04 08:31:52 sof Exp $ % % GHC Language Extensions. % @@ -234,13 +234,16 @@ may be just the ticket (NB: no chance of such code going through a native-code generator): +import Addr +import CString + oldGetEnv name - = _casm_ ``%r = getenv((char *) %0);'' name >>= \ litstring@(A# str#) -> + = _casm_ ``%r = getenv((char *) %0);'' name >>= \ litstring -> return ( - if (litstring == ``NULL'') then + if (litstring == nullAddr) then Left ("Fail:oldGetEnv:"++name) else - Right (unpackCString# str#) + Right (unpackCString litstring) ) @@ -1545,10 +1548,10 @@ assertion was made, assert pred val ==> assertError "Main.hs|15" pred val -The rewrite is only performed by the compiler when applications of -Exception.assert are spotted, so you can still define and use -your own versions of Exception.assert, so you can still define and +use your own versions of -fignore-asserts option That is, diff --git a/ghc/docs/users_guide/users_guide.vsgml b/ghc/docs/users_guide/users_guide.vsgml index ad3563b..86759d4 100644 --- a/ghc/docs/users_guide/users_guide.vsgml +++ b/ghc/docs/users_guide/users_guide.vsgml @@ -17,6 +17,7 @@ + ]>
@@ -41,5 +42,6 @@ Email: @glasgow-haskell-{bugs,users}-request@@haskell.org@ &libmisc &wrong &utils +&win32-dll
-- 1.7.10.4