diff options
author | Ben Gamari <ben@smart-cactus.org> | 2017-04-04 16:15:32 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-04-04 16:57:01 -0400 |
commit | ff267f37788eb47e1d9da15bf396eccec4297bf6 (patch) | |
tree | 0d9b9e50b2cbd4a79c1a479eaf86df0d13bb657e /includes | |
parent | 7e340c2bbf4a56959bd1e95cdd1cfdb2b7e537c2 (diff) | |
download | haskell-ff267f37788eb47e1d9da15bf396eccec4297bf6.tar.gz |
rts: Fix lingering #ifs
These were missed in D3278.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/rts/storage/InfoTables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/rts/storage/InfoTables.h b/includes/rts/storage/InfoTables.h index 87d0410937..307aac371c 100644 --- a/includes/rts/storage/InfoTables.h +++ b/includes/rts/storage/InfoTables.h @@ -28,7 +28,7 @@ hackery can go away sometime. ------------------------------------------------------------------------- */ -#if x86_64_TARGET_ARCH +#ifdef x86_64_TARGET_ARCH #define OFFSET_FIELD(n) StgHalfInt n; StgHalfWord __pad_##n #else #define OFFSET_FIELD(n) StgInt n |