nativeMachine: use constants
[mate.git] / Mate / NativeMachine.hs
1 {-# LANGUAGE CPP #-}
2 module Mate.NativeMachine(
3   emitFromBB,
4   mateHandler,
5   register_signal,
6   ptrSize, longSize
7   )where
8
9 #ifdef i386_HOST_ARCH
10 import Mate.X86CodeGen
11 import Mate.X86TrapHandling
12 import Mate.NativeSizes
13
14 #else
15 #error "no other arch supported yet :/"
16 #endif