[vmkit-commits] [vmkit] r120563 - in /vmkit/branches/multi-vm: include/mvm/Object.h include/mvm/PrintBuffer.h include/mvm/UTF8.h lib/Mvm/Runtime/Object.cpp lib/Mvm/Runtime/PrintBuffer.cpp lib/Mvm/Runtime/UTF8.cpp tools/vmkit/CommandLine.cpp tools

nicolas geoffray nicolas.geoffray at gmail.com
Wed Dec 1 00:35:42 PST 2010


Hi Gael,

On Wed, Dec 1, 2010 at 9:18 AM, Gael Thomas <gael.thomas at lip6.fr> wrote:

> Author: gthomas
> Date: Wed Dec  1 02:18:50 2010
> New Revision: 120563
> -
> -extern "C" void printFloat(float f) {
> -  fprintf(stderr, "%f\n", f);
> -}
> -
> -extern "C" void printDouble(double d) {
> -  fprintf(stderr, "%f\n", d);
> -}
> -
> -extern "C" void printLong(sint64 l) {
> -  fprintf(stderr, "%lld\n", (long long int)l);
> -}
> -
> -extern "C" void printInt(sint32 i) {
> -  fprintf(stderr, "%d\n", i);
> -}
> -
> -extern "C" void printObject(void* ptr) {
> -  fprintf(stderr, "%p\n", ptr);
> -}
>


These methods can be really useful for debugging. It looks like you removed
all of them. Could you put them back?

Thanks!
Nicolas
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/vmkit-commits/attachments/20101201/1ad64229/attachment.html>


More information about the vmkit-commits mailing list