clash-prelude-1.2.0: src/Clash/Class/AutoReg/Instances.hs
{-|
Copyright : (C) 2019, Google Inc.
License : BSD2 (see the file LICENSE)
Maintainer : Christiaan Baaij <christiaan.baaij@gmail.com>
-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE TemplateHaskell #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Clash.Class.AutoReg.Instances where
import Clash.Class.AutoReg.Internal
import Clash.CPP (maxTupleSize)
#if MIN_VERSION_base(4,12,0)
import Data.Complex (Complex)
import Data.Ord (Down)
#endif
import Data.Ratio (Ratio)
#if MIN_VERSION_base(4,12,0)
deriveAutoReg ''Complex
deriveAutoReg ''Down
#endif
deriveAutoReg ''Ratio
deriveAutoRegTuples [2..maxTupleSize]