aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/compile.c b/compile.c
index 7193b5ae..97a7d21c 100644
--- a/compile.c
+++ b/compile.c
@@ -130,9 +130,6 @@ CORD compile(ast_t *ast)
}
return code;
}
- case Interp: {
- return CORD_asprintf("__cord(%r)", compile(Match(ast, Interp)->value));
- }
case Block: {
ast_list_t *stmts = Match(ast, Block)->statements;
if (stmts && !stmts->next)