Skip to content

WIP: Allow multiple names in a single INLINE/NOINLINE pragma

Ömer Sinan Ağacan requested to merge osa1/ghc:comma_sep_inline into master

With this we allow specifying multiple names in a single INLINE/NOINLINE pragma:

{-# INLINE f, g, x #-}

Previously we'd need one pragma per definition:

{-# INLINE f #-}
{-# INLINE g #-}
{-# INLINE x #-}
Edited by Ben Gamari

Merge request reports