Skip to content

Commit

Permalink
Merge pull request #928 from MasterDuke17/use_correct_types_in_find_d…
Browse files Browse the repository at this point in the history
…eopt_target_and_index_signature

Use correct types in find_deopt_target_and_index
  • Loading branch information
jnthn committed Aug 5, 2018
2 parents 05990ef + f497f15 commit 22d710e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spesh/optimize.c
Expand Up @@ -1313,7 +1313,7 @@ MVMuint32 find_invoke_offset(MVMThreadContext *tc, MVMSpeshIns *ins) {
/* Given an instruction, finds the deopt target on it. Panics if there is not
* one there. */
void find_deopt_target_and_index(MVMThreadContext *tc, MVMSpeshGraph *g, MVMSpeshIns *ins,
MVMint32 *deopt_target_out, MVMint32 *deopt_index_out) {
MVMuint32 *deopt_target_out, MVMuint32 *deopt_index_out) {
MVMSpeshAnn *deopt_ann = ins->annotations;
while (deopt_ann) {
if (deopt_ann->type == MVM_SPESH_ANN_DEOPT_ONE_INS) {
Expand Down

0 comments on commit 22d710e

Please sign in to comment.