Skip to content

Commit

Permalink
Remove Eval PMC
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdr committed Feb 20, 2013
1 parent 8e7165b commit e38b4cb
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 1,258 deletions.
3 changes: 0 additions & 3 deletions MANIFEST
Expand Up @@ -1377,7 +1377,6 @@ src/pmc/continuation.pmc []
src/pmc/coroutine.pmc []
src/pmc/default.pmc []
src/pmc/env.pmc []
src/pmc/eval.pmc []
src/pmc/eventhandler.pmc []
src/pmc/exception.pmc []
src/pmc/exceptionhandler.pmc []
Expand Down Expand Up @@ -1536,7 +1535,6 @@ t/compilers/imcc/reg/spill_old.t [test]
t/compilers/imcc/syn/clash.t [test]
t/compilers/imcc/syn/const.t [test]
t/compilers/imcc/syn/errors.t [test]
t/compilers/imcc/syn/eval.t [test]
t/compilers/imcc/syn/file.t [test]
t/compilers/imcc/syn/hll.t [test]
t/compilers/imcc/syn/keyed.t [test]
Expand Down Expand Up @@ -1896,7 +1894,6 @@ t/pmc/continuation.t [test]
t/pmc/coroutine.t [test]
t/pmc/default.t [test]
t/pmc/env.t [test]
t/pmc/eval.t [test]
t/pmc/eventhandler.t [test]
t/pmc/exception-old.t [test]
t/pmc/exception.t [test]
Expand Down
3 changes: 1 addition & 2 deletions include/parrot/sub.h
Expand Up @@ -125,8 +125,7 @@ typedef struct Parrot_sub_arginfo {
do { \
const INTVAL type = (pmc)->vtable->base_type; \
if (type == enum_class_Sub || \
type == enum_class_Coroutine || \
type == enum_class_Eval) \
type == enum_class_Coroutine) \
{\
(sub) = PARROT_SUB((pmc)); \
} \
Expand Down
1 change: 0 additions & 1 deletion src/call/pcc.c
Expand Up @@ -268,7 +268,6 @@ do_run_ops(PARROT_INTERP, ARGIN(PMC *sub_obj))
switch (sub_obj->vtable->base_type) {
case enum_class_Sub:
case enum_class_MultiSub:
case enum_class_Eval:
case enum_class_Continuation:
return 1;
case enum_class_Object:
Expand Down

0 comments on commit e38b4cb

Please sign in to comment.