projects
/
ghc-hetmet.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
699ae98
)
[project @ 2001-01-16 11:28:45 by simonmar]
author
simonmar
<unknown>
Tue, 16 Jan 2001 11:28:45 +0000
(11:28 +0000)
committer
simonmar
<unknown>
Tue, 16 Jan 2001 11:28:45 +0000
(11:28 +0000)
add dummy freeHaskellFunctionPtr when we don't have a real one on this arch.
ghc/rts/Adjustor.c
patch
|
blob
|
history
diff --git
a/ghc/rts/Adjustor.c
b/ghc/rts/Adjustor.c
index
24fa13a
..
aa0a9ce
100644
(file)
--- a/
ghc/rts/Adjustor.c
+++ b/
ghc/rts/Adjustor.c
@@
-249,5
+249,11
@@
freeHaskellFunctionPtr(void* ptr)
free(ptr);
}
+#else /* Provide dummy */
+void
+freeHaskellFunctionPtr(void* ptr)
+{
+}
+
#endif /* i386_TARGET_ARCH || sparc_TARGET_ARCH */