blob: abeb56600044d1d58aa9780ca0105bf66860fd0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* -----------------------------------------------------------------------------
(c) The University of Glasgow, 1994-2004
Native-code generator header file - just useful macros for now.
-------------------------------------------------------------------------- */
#ifndef NCG_H
#define NCG_H
#include "ghc_boot_platform.h"
#if i386_TARGET_ARCH
# define IF_ARCH_i386(x,y) x
#else
# define IF_ARCH_i386(x,y) y
#endif
|