Skip to content

Commit

Permalink
removed obsolete C_emit_trace_info
Browse files Browse the repository at this point in the history
  • Loading branch information
bunny351 committed Sep 9, 2011
1 parent 08493d9 commit 2d5244d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
1 change: 0 additions & 1 deletion chicken.h
Expand Up @@ -1597,7 +1597,6 @@ C_fctexport int C_in_stackp(C_word x) C_regparm;
C_fctexport int C_fcall C_in_heapp(C_word x) C_regparm;
C_fctexport int C_fcall C_in_fromspacep(C_word x) C_regparm;
C_fctexport void C_fcall C_trace(C_char *name) C_regparm;
C_fctexport C_word C_fcall C_emit_trace_info(C_word x, C_word y, C_word t) C_regparm;
C_fctexport C_word C_fcall C_emit_trace_info2(char *raw, C_word x, C_word y, C_word t) C_regparm;
C_fctexport C_word C_fcall C_hash_string(C_word str) C_regparm;
C_fctexport C_word C_fcall C_hash_string_ci(C_word str) C_regparm;
Expand Down
7 changes: 0 additions & 7 deletions runtime.c
Expand Up @@ -3664,13 +3664,6 @@ C_regparm void C_fcall C_trace(C_char *name)
}


/* DEPRECATED: throw out at some stage: */
C_regparm C_word C_fcall C_emit_trace_info(C_word x, C_word y, C_word t)
{
return C_emit_trace_info2("<eval>", x, y, t);
}


C_regparm C_word C_fcall C_emit_trace_info2(char *raw, C_word x, C_word y, C_word t)
{
if(trace_buffer_top >= trace_buffer_limit) {
Expand Down
4 changes: 2 additions & 2 deletions scrutinizer.scm
Expand Up @@ -2093,15 +2093,15 @@
(##sys#check-list-items ;XXX missing
,v
(lambda (,var)
,(test (second t) ,var)))
,(test (second t) var)))
'#f)))
((vector)
(let ((var (gensym)))
`(if (##core#inline "C_i_vectorp" ,v)
(##sys#check-vector-items ;XXX missing
,v
(lambda (,var)
,(test (second t) ,var)))
,(test (second t) var)))
'#f)))
((not)
`(not ,(test (cadr t) v)))
Expand Down

0 comments on commit 2d5244d

Please sign in to comment.