Skip to content
Snippets Groups Projects
Commit fc3a5e13 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-01-15 17:36:31 by simonm]

- __HASKELL1__ is now 5 (was 4).  Surely not the last word in
  Haskell98 CPP symbols.

- Fix stats munging for new RTS.
parent 37c7c022
No related merge requests found
......@@ -370,7 +370,7 @@ require special handling.
# We need to look in ghc/ and glaExts/ when searching for implicitly needed .hi files, but
# we should really *not* look there for explicitly imported modules.
$Haskell1Version = 4; # i.e., Haskell 1.4
$Haskell1Version = 5; # i.e., Haskell 1.4
@Cpp_define = ();
# Cpp symbols defined when we're processing Haskell source.
......@@ -2288,7 +2288,7 @@ sub process_ghc_timings {
local($tot_samples) = 0;
while (<STATS>) {
if (! /Gen:\s+0/ && /^\s*\d+\s+\d+\s+(\d+)\s+\d+\.\d+/ ) {
if (! /Gen:\s+0/ && ! /Minor/ && /^\s*\d+\s+\d+\s+(\d+)\s+\d+\.\d+/ ) {
$max_live = $1 if $max_live < $1;
$tot_live += $1;
$tot_samples += 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment