id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,os,architecture,failure,difficulty,testcase,blockedby,blocking,related
2224,-fhpc inteferes/prevents rewrite rules from firing,dons,andy@galois.com,"Use case:

I'm writing tests for rewrite rules, and using HPC to determine if rules were fired (and their code exercised). HPC is quite cool here, since it lets us see which rules fired, without needing to explicitly export functions to test.

However, -fhpc seems to prevent many rules from firing (likely due to ticks getting in the way?)

For example:

{{{
import qualified  Data.ByteString.Char8 as C

main = print (C.pack ""literal"")
}}}

When compiled normally, triggers a nice rewrite rule:

{{{
$ ghc -O2 A.hs -ddump-simpl-stats A.hs -c

    1 ByteString pack/packAddress
}}}

Now with -fhpc:

{{{
2 RuleFired
    1 unpack
    1 unpack-list
}}}

What's the best way to ensure the same code is exercised with and without -fhpc here? (I'd quite like to get this working, since rewrite rules benefit from testing.)",bug,new,lowest,7.6.2,Code Coverage,6.8.2,,"rules, hpc",dons@…,Unknown/Multiple,Unknown/Multiple,,Unknown,,,,
