]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Deleted.
authorJulian Seward <jseward@acm.org>
Sat, 26 Jun 2004 14:27:22 +0000 (14:27 +0000)
committerJulian Seward <jseward@acm.org>
Sat, 26 Jun 2004 14:27:22 +0000 (14:27 +0000)
This line, and those below, will be ignored--

D    Linker.hs

git-svn-id: svn://svn.valgrind.org/vex/trunk@16

VEX/Linker.hs [deleted file]

diff --git a/VEX/Linker.hs b/VEX/Linker.hs
deleted file mode 100644 (file)
index f0a954f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-
-module Linker  ( linkObjects )
-
-where
-
-import Foreign.C.String
-import Foreign.Ptr
-
-foreign import ccall "linker_top_level_INIT" 
-                     linker_top_level_INIT :: IO ()
-
-foreign import ccall "linker_top_level_ADD"
-                     linker_top_level_ADD :: CString -> IO ()
-
-foreign import ccall "linker_top_level_LINK"
-                     linker_top_level_LINK :: IO (Ptr ())
-
-linkObjects :: [String] -> IO (Ptr ())
-linkObjects objs
-   = do linker_top_level_INIT
-        mapM add_obj objs
-        main_addr <- linker_top_level_LINK
-        return main_addr
-     where
-        add_obj :: String -> IO ()
-        add_obj obj_name = withCString obj_name linker_top_level_ADD