summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormdejong <mdejong>2004-06-21 22:05:44 (GMT)
committermdejong <mdejong>2004-06-21 22:05:44 (GMT)
commita7d93e405d7c52890ac2b6451680ed32574c2f18 (patch)
treea4a87ef27020e7670b6fb436fad9cffa4f64cf81 /ChangeLog
parentdd75f95a7e0f760d88b9059d13eca9ffd8e235cc (diff)
downloadtcl-a7d93e405d7c52890ac2b6451680ed32574c2f18.zip
tcl-a7d93e405d7c52890ac2b6451680ed32574c2f18.tar.gz
tcl-a7d93e405d7c52890ac2b6451680ed32574c2f18.tar.bz2
* win/tclWin32Dll.c (DllMain, _except_dllmain_detach_handler,
TclpCheckStackSpace, _except_checkstackspace_handler, TclWinCPUID, _except_TclWinCPUID_detach_handler): * win/tclWinChan.c (Tcl_MakeFileChannel, _except_makefilechannel_handler): * win/tclWinFCmd.c (DoRenameFile, _except_dorenamefile_handler, DoCopyFile, _except_docopyfile_handler): Rework pushing of exception handler function pointer so that compiling with gcc -O3 works. Remove empty function call to avoid compiler warning. Mark the DllMain function as noinline to avoid compiler error from duplicated asm labels in generated code.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f69357..5c93bc3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2004-06-21 Mo DeJong <mdejong@users.sourceforge.net>
+
+ * win/tclWin32Dll.c (DllMain, _except_dllmain_detach_handler,
+ TclpCheckStackSpace, _except_checkstackspace_handler,
+ TclWinCPUID, _except_TclWinCPUID_detach_handler):
+ * win/tclWinChan.c (Tcl_MakeFileChannel,
+ _except_makefilechannel_handler):
+ * win/tclWinFCmd.c (DoRenameFile,
+ _except_dorenamefile_handler, DoCopyFile,
+ _except_docopyfile_handler):
+ Rework pushing of exception handler function pointer
+ so that compiling with gcc -O3 works. Remove empty
+ function call to avoid compiler warning. Mark the
+ DllMain function as noinline to avoid compiler
+ error from duplicated asm labels in generated code.
+
2004-06-21 Donal K. Fellows <donal.k.fellows@man.ac.uk>
* generic/tclThreadAlloc.c (Ptr2Block): Rewrote so as to maximize