Remove unused function.

This commit is contained in:
David Anderson 2014-07-20 11:19:48 -07:00
parent 5daa420aed
commit 2b74f1bd61
2 changed files with 0 additions and 7 deletions

View File

@ -718,7 +718,6 @@ SC_FUNC void pushval(cell val);
SC_FUNC void popreg(regid reg);
SC_FUNC void genarray(int dims, int _autozero);
SC_FUNC void swap1(void);
SC_FUNC void xchg(void);
SC_FUNC void ffswitch(int label);
SC_FUNC void ffcase(cell value,char *labelname,int newtable);
SC_FUNC void ffcall(symbol *sym,const char *label,int numargs);

View File

@ -1394,12 +1394,6 @@ SC_FUNC void jmp_eq0(int number)
code_idx+=opcodes(1)+opargs(1);
}
SC_FUNC void xchg(void)
{
stgwrite("\txchg\n");
code_idx+=opcodes(1);
}
/* write a value in hexadecimal; optionally adds a newline */
SC_FUNC void outval(cell val,int newline)
{