stgMallocBytesRWX --> allocateExec
authorSimon Marlow <simonmar@microsoft.com>
Wed, 31 May 2006 09:12:02 +0000 (09:12 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Wed, 31 May 2006 09:12:02 +0000 (09:12 +0000)
Not sure how I left this out of the previous patch, oh well.

compiler/ghci/ByteCodeItbls.lhs

index 74346c6..6513ff6 100644 (file)
@@ -357,10 +357,10 @@ load :: Storable a => PtrIO a
 load = do addr <- advance
           lift (peek addr)
 
 load = do addr <- advance
           lift (peek addr)
 
-foreign import ccall unsafe "stgMallocBytesRWX"
-  _stgMallocBytesRWX :: CInt -> IO (Ptr a)
+foreign import ccall unsafe "allocateExec"
+  _allocateExec :: CUInt -> IO (Ptr a)
 
 malloc_exec :: Int -> IO (Ptr a)
 
 malloc_exec :: Int -> IO (Ptr a)
-malloc_exec bytes = _stgMallocBytesRWX (fromIntegral bytes)
+malloc_exec bytes = _allocateExec (fromIntegral bytes)
 
 \end{code}
 
 \end{code}