summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index 0678b13..fbd2310 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -204,7 +204,6 @@ struct Blk {
 	struct {
 		short type;
 		Ref arg;
-		int rettyn;
 	} jmp;
 	Blk *s1;
 	Blk *s2;
@@ -246,6 +245,7 @@ struct Fn {
 	int ntmp;
 	int ncon;
 	int nblk;
+	int retty;
 	Blk **rpo;
 	ulong reg;
 	int svec[NAlign];