From: simonmar Date: Mon, 27 Mar 2000 08:50:15 +0000 (+0000) Subject: [project @ 2000-03-27 08:50:15 by simonmar] X-Git-Tag: Approximately_9120_patches~4900 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=f9e2bf381cd97ed82ffba5ceb8df747691a78a19;p=ghc-hetmet.git [project @ 2000-03-27 08:50:15 by simonmar] Don't treat 'ccall' and 'stdcall' as reserved words. This fixes another problem with bootstrapping. --- 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 }