[pure-lang-svn] SF.net SVN: pure-lang:[671] pure/trunk/runtime.cc
Status: Beta
Brought to you by:
agraef
|
From: <ag...@us...> - 2008-08-30 21:30:54
|
Revision: 671
http://pure-lang.svn.sourceforge.net/pure-lang/?rev=671&view=rev
Author: agraef
Date: 2008-08-30 21:31:04 +0000 (Sat, 30 Aug 2008)
Log Message:
-----------
Add size of long long type.
Modified Paths:
--------------
pure/trunk/runtime.cc
Modified: pure/trunk/runtime.cc
===================================================================
--- pure/trunk/runtime.cc 2008-08-30 20:58:44 UTC (rev 670)
+++ pure/trunk/runtime.cc 2008-08-30 21:31:04 UTC (rev 671)
@@ -3107,6 +3107,7 @@
cdf(interp, "SIZEOF_SHORT", pure_int(sizeof(short)));
cdf(interp, "SIZEOF_INT", pure_int(sizeof(int)));
cdf(interp, "SIZEOF_LONG", pure_int(sizeof(long)));
+ cdf(interp, "SIZEOF_LONG_LONG", pure_int(sizeof(long long)));
cdf(interp, "SIZEOF_FLOAT", pure_int(sizeof(float)));
cdf(interp, "SIZEOF_DOUBLE", pure_int(sizeof(double)));
cdf(interp, "SIZEOF_COMPLEX_FLOAT", pure_int(sizeof(_Complex float)));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|