summaryrefslogtreecommitdiff
path: root/lout
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-05-02 22:31:27 +0200
committerSebastian Geerken <devnull@localhost>2014-05-02 22:31:27 +0200
commit7784a832a24eef083efeaaaea5e58c9ec57ba990 (patch)
tree2d7aa0361b8f1b5575fce9a57569c4ee471ef6ce /lout
parent212b6d04544a3d7bafac9daa06334a4405142882 (diff)
Fixed a bug in float extremes calculation.
Diffstat (limited to 'lout')
-rw-r--r--lout/debug.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/lout/debug.hh b/lout/debug.hh
index a2393470..20698a2e 100644
--- a/lout/debug.hh
+++ b/lout/debug.hh
@@ -189,6 +189,13 @@
fflush (stdout); \
} D_STMT_END
+#define DBG_OBJ_SET_PTR_O(obj, var, val) \
+ D_STMT_START { \
+ printf (RTFL_PREFIX_FMT "obj-set:%p:%s:%p\n", \
+ RTFL_PREFIX_ARGS, obj, var, val); \
+ fflush (stdout); \
+ } D_STMT_END
+
#define DBG_OBJ_ARRSET_NUM(var, ind, val) \
D_STMT_START { \
printf (RTFL_PREFIX_FMT "obj-set:%p:%s.%d:%d\n", \
@@ -275,6 +282,7 @@
#define DBG_OBJ_SET_SYM(var, val) D_STMT_NOP
#define DBG_OBJ_SET_STR(var, val) D_STMT_NOP
#define DBG_OBJ_SET_PTR(var, val) D_STMT_NOP
+#define DBG_OBJ_SET_PTR_O(obj, var, val) D_STMT_NOP
#define DBG_OBJ_ARRSET_NUM(var, ind, val) D_STMT_NOP
#define DBG_OBJ_ARRSET_SYM(var, ind, val) D_STMT_NOP
#define DBG_OBJ_ARRSET_STR(var, ind, val) D_STMT_NOP