[pure-lang-svn] SF.net SVN: pure-lang: [153] pure/trunk/runtime.cc
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-05-28 05:58:46
|
Revision: 153 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=153&view=rev Author: agraef Date: 2008-05-27 22:58:54 -0700 (Tue, 27 May 2008) Log Message: ----------- Remove obsolete debugging code. Modified Paths: -------------- pure/trunk/runtime.cc Modified: pure/trunk/runtime.cc =================================================================== --- pure/trunk/runtime.cc 2008-05-28 05:50:36 UTC (rev 152) +++ pure/trunk/runtime.cc 2008-05-28 05:58:54 UTC (rev 153) @@ -491,7 +491,6 @@ (sizeof(mp_limb_t) == 8) ? (uint64_t)mpz_getlimbn(x->data.z, 0) : (mpz_getlimbn(x->data.z, 0) + (((uint64_t)mpz_getlimbn(x->data.z, 1))<<32)); - cerr << "v = " << v << endl; return (mpz_sgn(x->data.z) < 0) ? -(int64_t)v : (int64_t)v; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |