shithub: mc

Download patch

ref: 682b8ca1e799b4ae78418b0c94e46b6077b45b5a
parent: 93021acafb5a87b728ab1e528465a665f830ec77
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Aug 13 18:17:40 EDT 2017

Remove dead debug code.

--- a/parse/type.c
+++ b/parse/type.c
@@ -763,7 +763,6 @@
 tyeq_rec(Type *a, Type *b, Bitset *avisited, Bitset *bvisited, int search)
 {
 	Type *x, *y;
-	int atid, btid;
 	size_t i;
 	int ret;
 
@@ -792,8 +791,6 @@
 
 	bsput(avisited, a->tid);
 	bsput(bvisited, b->tid);
-	atid = a->tid;
-	btid = b->tid;
 	ret = 1;
 
 	switch (a->type) {