diff options
author | Ian Lynagh <igloo@earth.li> | 2009-06-08 20:39:35 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-06-08 20:39:35 +0000 |
commit | 1a660e030bd3aaaa34adfea77d72856cdb48479e (patch) | |
tree | 28d1d62a98c79f305e1f02ab4f8e523cd8108a3c /compiler/cmm | |
parent | 4e8e0ed5c8d927e732c449bdee8117255dc2b1bc (diff) | |
download | haskell-1a660e030bd3aaaa34adfea77d72856cdb48479e.tar.gz |
Put "%expect 0" directives in the .y files
With the exception of GHC's main Parser.y(.pp), which has 2
reduce/reduce conflicts
Diffstat (limited to 'compiler/cmm')
-rw-r--r-- | compiler/cmm/CmmParse.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/cmm/CmmParse.y b/compiler/cmm/CmmParse.y index 3469efedbc..2c7ffe2845 100644 --- a/compiler/cmm/CmmParse.y +++ b/compiler/cmm/CmmParse.y @@ -63,6 +63,8 @@ import System.Exit #include "HsVersions.h" } +%expect 0 + %token ':' { L _ (CmmT_SpecChar ':') } ';' { L _ (CmmT_SpecChar ';') } |