X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fcmm%2FCmmLex.x;h=50e9aea9e8832aca034dd6ede992054f78e271e4;hp=42243258c52fe5ce84cc6c698ae25c87a61d604c;hb=5289f5d85610f71625a439747a09384876655eb5;hpb=f4b727487a65e6b611bbaafbd2207bd63a8df706 diff --git a/compiler/cmm/CmmLex.x b/compiler/cmm/CmmLex.x index 4224325..50e9aea 100644 --- a/compiler/cmm/CmmLex.x +++ b/compiler/cmm/CmmLex.x @@ -11,6 +11,7 @@ ----------------------------------------------------------------------------- { +{-# LANGUAGE BangPatterns #-} {-# OPTIONS -Wwarn -w #-} -- The above -Wwarn supression flag is a temporary kludge. -- While working on this module you are encouraged to remove it and fix @@ -22,8 +23,6 @@ module CmmLex ( CmmToken(..), cmmlex, ) where -#include "HsVersions.h" - import Cmm import Lexer @@ -76,7 +75,7 @@ $white_no_nl+ ; -- single-line line pragmas, of the form -- # "" \n $digit+ { setLine line_prag1 } - \" ($printable # \")* \" { setFile line_prag2 } + \" [^\"]* \" { setFile line_prag2 } .* { pop } <0> {