From: Michael Beck Date: Wed, 9 Apr 2003 11:49:02 +0000 (+0000) Subject: Removed debugging code X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=bd43edbfd97625c718d30e1f2581bacf63607136;p=libfirm Removed debugging code [r1047] --- diff --git a/ir/tv/tv.c b/ir/tv/tv.c index 41960b004..287e0f90a 100644 --- a/ir/tv/tv.c +++ b/ir/tv/tv.c @@ -663,7 +663,6 @@ tarval *tarval_neg(tarval *a) /* negation */ assert(mode_is_num(a->mode)); /* negation only for numerical values */ assert(mode_is_signed(a->mode)); /* negation is difficult without negative numbers, isn't it */ -printf("NEG\n"); switch (get_mode_sort(a->mode)) { case int_number: @@ -671,7 +670,6 @@ printf("NEG\n"); return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode); case float_number: -printf("FP NEG\n"); fc_neg(a->value); return get_tarval(fc_get_buffer(), fc_get_buffer_length(), a->mode);