From fe01a9ce0f23b872c6a6ba17e2e7523e2d23b246 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Thu, 10 Sep 2020 21:24:07 -0400 Subject: [PATCH] Update a comment --- compiler/gen/src/llvm/build_list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/gen/src/llvm/build_list.rs b/compiler/gen/src/llvm/build_list.rs index 26004ebe7f..47cc194679 100644 --- a/compiler/gen/src/llvm/build_list.rs +++ b/compiler/gen/src/llvm/build_list.rs @@ -525,7 +525,7 @@ pub fn list_reverse<'a, 'ctx, 'env>( 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_unconditional_branch(cont_block); }