From f6550f82119b62c5d71a4cc6fdc5c2ac72fd17f9 Mon Sep 17 00:00:00 2001 From: Shintaro Kaneko Date: Fri, 4 Dec 2015 02:36:30 +0900 Subject: [PATCH] Fix tiny typo --- test/SILPasses/sil_combine.sil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/SILPasses/sil_combine.sil b/test/SILPasses/sil_combine.sil index 01f4688230ac7..6322a556bf4f4 100644 --- a/test/SILPasses/sil_combine.sil +++ b/test/SILPasses/sil_combine.sil @@ -2838,7 +2838,7 @@ sil @closure_with_in_guaranteed_owened_in_args : $@convention(method) (@in CC2, // Test the peephole performing apply{partial_apply(x,y,z)}(a) -> apply(a,x,y,z) // We need to check the following: // - all arguments of a partial_apply, which are either results of a stack_alloc or consumed indirect arguments -// should be copied into temporaries. This should happen just before tha partial_apply instruction. +// should be copied into temporaries. This should happen just before that partial_apply instruction. // - The temporaries are allocated at the beginning of the function and deallocated at the end. // - Before each apply of the partial_apply, we retain values of any arguments which are of non-address type. // This is required because they could be consumed (i.e. relased by the callee).