From f9e2bf381cd97ed82ffba5ceb8df747691a78a19 Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 27 Mar 2000 08:50:15 +0000 Subject: [PATCH] [project @ 2000-03-27 08:50:15 by simonmar] Don't treat 'ccall' and 'stdcall' as reserved words. This fixes another problem with bootstrapping. --- ghc/compiler/rename/ParseIface.y | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ghc/compiler/rename/ParseIface.y b/ghc/compiler/rename/ParseIface.y index cd7068d..ad12190 100644 --- a/ghc/compiler/rename/ParseIface.y +++ b/ghc/compiler/rename/ParseIface.y @@ -527,6 +527,8 @@ var_fs :: { EncodedFS } | 'dynamic' { SLIT("dynamic") } | 'unsafe' { SLIT("unsafe") } | 'with' { SLIT("with") } + | 'ccall' { SLIT("ccall") } + | 'stdcall' { SLIT("stdcall") } qvar_fs :: { (EncodedFS, EncodedFS) } : QVARID { $1 } -- 1.7.10.4