[svn:parrot] r37948 - trunk/compilers/imcc
NotFound at svn.parrot.org
NotFound at svn.parrot.org
Tue Apr 7 18:25:03 UTC 2009
Author: NotFound
Date: Tue Apr 7 18:25:02 2009
New Revision: 37948
URL: https://trac.parrot.org/parrot/changeset/37948
Log:
[imcc] fix a C warning/C++ error
Modified:
trunk/compilers/imcc/parser_util.c
Modified: trunk/compilers/imcc/parser_util.c
==============================================================================
--- trunk/compilers/imcc/parser_util.c Tue Apr 7 18:04:21 2009 (r37947)
+++ trunk/compilers/imcc/parser_util.c Tue Apr 7 18:25:02 2009 (r37948)
@@ -865,7 +865,7 @@
* Continuations (this happens when something is the target of a :outer)
* trying to return values using them when invoked. (See TT#500 for the
* report of the bug this fixes). */
- PMC *save_results = CONTEXT(interp)->current_results;
+ opcode_t *save_results = CONTEXT(interp)->current_results;
CONTEXT(interp)->current_results = NULL;
sub = imcc_compile(interp, s, 0, &error_message);
CONTEXT(interp)->current_results = save_results;
More information about the parrot-commits
mailing list