summary refs log tree commit diff stats
path: root/lib/system/dyncalls.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-05-07 22:13:24 +0200
committerAraq <rumpf_a@web.de>2011-05-07 22:13:24 +0200
commit73c355176653e5b643f2bbbdc4f967cc24b3ee3b (patch)
tree8b25ccdebec59fbd7773f273b66b4fe1cf8e0643 /lib/system/dyncalls.nim
parent7d2b3dd6db07203d7ff7a083ddae62aa8e7942c8 (diff)
downloadNim-73c355176653e5b643f2bbbdc4f967cc24b3ee3b.tar.gz
gc tweaking to gain a few percent of performance
Diffstat (limited to 'lib/system/dyncalls.nim')
-rwxr-xr-xlib/system/dyncalls.nim4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/system/dyncalls.nim b/lib/system/dyncalls.nim
index 88870a209..fb1130938 100755
--- a/lib/system/dyncalls.nim
+++ b/lib/system/dyncalls.nim
@@ -1,7 +1,7 @@
 #
 #
 #            Nimrod's Runtime Library
-#        (c) Copyright 2010 Andreas Rumpf
+#        (c) Copyright 2011 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
@@ -21,8 +21,6 @@ proc rawWrite(f: TFile, s: string) =
 
 proc nimLoadLibraryError(path: string) =
   # carefully written to avoid memory allocation:
-  #stdout.write("could not load: ")
-  #quit(path)
   stdout.rawWrite("could not load: ")
   stdout.rawWrite(path)
   stdout.rawWrite("\n")