From: simonmar Date: Thu, 1 Mar 2001 13:06:54 +0000 (+0000) Subject: [project @ 2001-03-01 13:06:54 by simonmar] X-Git-Tag: Approximately_9120_patches~2509 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=09c9b6a7d04d95595097fcfe2505b380e754bf00;p=ghc-hetmet.git [project @ 2001-03-01 13:06:54 by simonmar] fix a couple of foreign imports --- diff --git a/ghc/lib/std/PrelInt.lhs b/ghc/lib/std/PrelInt.lhs index ed48a37..e9ba3c1 100644 --- a/ghc/lib/std/PrelInt.lhs +++ b/ghc/lib/std/PrelInt.lhs @@ -465,8 +465,8 @@ foreign import "stg_plusInt64" unsafe plusInt64# :: Int64# -> Int64# -> foreign import "stg_minusInt64" unsafe minusInt64# :: Int64# -> Int64# -> Int64# foreign import "stg_timesInt64" unsafe timesInt64# :: Int64# -> Int64# -> Int64# foreign import "stg_negateInt64" unsafe negateInt64# :: Int64# -> Int64# -foreign import "stg_quotWord64" unsafe quotInt64# :: Int64# -> Int64# -> Int64# -foreign import "stg_remWord64" unsafe remInt64# :: Int64# -> Int64# -> Int64# +foreign import "stg_quotInt64" unsafe quotInt64# :: Int64# -> Int64# -> Int64# +foreign import "stg_remInt64" unsafe remInt64# :: Int64# -> Int64# -> Int64# foreign import "stg_intToInt64" unsafe intToInt64# :: Int# -> Int64# foreign import "stg_int64ToInt" unsafe int64ToInt# :: Int64# -> Int# foreign import "stg_wordToWord64" unsafe wordToWord64# :: Word# -> Word64#