This project is mirrored from https://gitlab.haskell.org/ghc/ghc.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
- 01 Sep, 1999 6 commits
-
-
sof authored
updated
-
sof authored
Verify that 'as' clause without 'qualified' brings both qual and unqual'ed name into scope
-
sof authored
Test which verifies that special ids are correctly handled by the front-end
-
sof authored
FFI decl tests
-
sof authored
If -noC is used, don't compile the foreign-export C stubs
-
sof authored
* On foreign decls, "ext_name"s are now optional. If missing, the ext_name is made equal to the Haskell name. * Half a dozen special-ids were incorrectly handled when occurring as tyvars.
-
- 31 Aug, 1999 3 commits
- 30 Aug, 1999 2 commits
- 27 Aug, 1999 10 commits
-
-
simonpj authored
Fix typo
-
simonmar authored
synch output.
-
simonmar authored
typo
-
simonmar authored
update sample output
-
simonmar authored
missing stdout file.
-
simonmar authored
syslib misc now depends on syslib concurrent because of Memo.hs.
-
simonpj authored
When deciding if a module is a "library" module, allow C:/ C:\ as prefixes of the path, not just / We need to improve this hack, but this fix makes things work on Windoze.
-
simonmar authored
wibble
-
simonmar authored
Fix imports.
-
simonmar authored
oops, export threadWaitRead etc.
-
- 26 Aug, 1999 4 commits
-
-
simonmar authored
Move the rest of the Concurrent Haskell documentation into the GHC/Hugs libraries document, so it now all lives in one place. Also update and tidy it up somewhat.
-
simonmar authored
threadDelay etc. should be defined in PrelConc.
-
panne authored
Added missing #include.
-
panne authored
Fixed typo UNUSED => STG_UNUSED
-
- 25 Aug, 1999 5 commits
-
-
simonmar authored
enable non-blocking I/O.
-
simonmar authored
Add select code for thread{WaitRead,WaitWrite,Delay}.
-
simonmar authored
Support for thread{WaitRead,WaitWrite,Delay}. These should behave identically to the 3.02 implementations. We now have the virtual timer on during all program runs, which ticks at 50Hz by default. This is used to implement threadDelay, so you won't get any better granularity than the tick frequency unfortunately. It remains to be seen whether using the virtual timer will have a measurable impact on performance for non-threadDelaying programs. All operations in the I/O subsystem should now be non-blocking with respect to other running Haskell threads. It remains to be seen whether this will have a measurable performance impact on non-concurrent programs (probably not).
-
simonmar authored
Little test for Eq and Ord instances of ThreadId.
-
simonmar authored
Eq and Ord instances for ThreadId.
-
- 24 Aug, 1999 8 commits
-
-
simonmar authored
Add -D__HASKELL__=98
-
simonpj authored
IdInfo.copyIdInfo was wrong. It didn't copy a NOINLINE pragma when the occurrenc analyser "shorted out" a binding; as a result the following program didn't respect the NOINLINE pragma: plus :: Int -> Int -> Int {-# NOINLINE plus #-} plus = (+) f x = plus x (plus x x)
-
simonmar authored
oops, back out some other changes that made it in by mistake.
-
simonmar authored
An inaccurate constraint on the inline assembly code for mulIntC# caused gcc 2.95 to overoptimise around it, leading to bogus multiply code for Integers.
-
simonpj authored
Document the -i effect on recompilation
-
simonpj authored
Record all orphan modules (including "library" ones) in the usage info in an interface file. Leaving these out prevents propagation of orphan module information.
-
simonpj authored
Make primOpHasSideEffects return True for the various Write primops. Amazingly, this wasn't done, and that meant that Write operations could be silently discarded! This broke the GHC typechecker (actually the implementation of checkNoErrsTc, showed up in deriving code)
-
simonpj authored
When recompiling with GHC 4.02 and Keith's new type representations, it seems that I need UVar to be in Var.hi-boot. I don't think this will be the case with the better handling of SOURCE import in 4.04, but for now I'm just going ahead and adding the UVar synonym to the Var.hi-boot files.
-
- 23 Aug, 1999 2 commits