Update a comment

This commit is contained in:
Richard Feldman 2020-09-10 21:24:07 -04:00 committed by GitHub
parent 145f75d72b
commit fe01a9ce0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -525,7 +525,7 @@ pub fn list_reverse<'a, 'ctx, 'env>(
list_reverse_help(env, parent, InPlace::Clone, length, list_ptr, new_list_ptr); list_reverse_help(env, parent, InPlace::Clone, length, list_ptr, new_list_ptr);
// store NULL pointer there // store new list pointer there
builder.build_store(result, new_list_ptr); builder.build_store(result, new_list_ptr);
builder.build_unconditional_branch(cont_block); builder.build_unconditional_branch(cont_block);
} }