summaryrefslogtreecommitdiff
path: root/compiler/ghci/ByteCodeFFI.lhs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2006-12-22 14:15:54 +0000
committerIan Lynagh <igloo@earth.li>2006-12-22 14:15:54 +0000
commite940d0ad629747fd30d1dc318a4c1ab893ac7222 (patch)
tree632052ea22756c3b5a0fafdc66226db24cdc80c8 /compiler/ghci/ByteCodeFFI.lhs
parent6dcff14bc5a7b394cf77f98b369d6f93c030cb36 (diff)
downloadhaskell-e940d0ad629747fd30d1dc318a4c1ab893ac7222.tar.gz
Handle LongArg's in the FFI on x86
Diffstat (limited to 'compiler/ghci/ByteCodeFFI.lhs')
-rw-r--r--compiler/ghci/ByteCodeFFI.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/ByteCodeFFI.lhs b/compiler/ghci/ByteCodeFFI.lhs
index 3e12828fe7..982cdec29e 100644
--- a/compiler/ghci/ByteCodeFFI.lhs
+++ b/compiler/ghci/ByteCodeFFI.lhs
@@ -263,7 +263,7 @@ mkMarshalCode_wrk cconv (r_offW, r_rep) addr_offW arg_offs_n_reps
NonPtrArg -> i32
DoubleArg -> f64
FloatArg -> f32
- -- LongArg -> i64
+ LongArg -> i64
VoidArg -> []
other -> moan64 "ByteCodeFFI.mkMarshalCode_wrk(x86)"
(ppr r_rep)