From e03f18f4ca6b21d01b360b030a62a74258b4e7dc Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 2 Jan 2012 09:23:26 +0100 Subject: [PATCH] cuda.c: fix typos in comments Signed-off-by: Sven Verdoolaege --- cuda.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cuda.c b/cuda.c index b3707f6..e4c04e7 100644 --- a/cuda.c +++ b/cuda.c @@ -49,7 +49,7 @@ struct cuda_array_info; /* A group of array references in a kernel that should be handled together. * If private_bound is not NULL, then it is mapped to registers. * Otherwise, if shared_bound is not NULL, it is mapped to shared memory. - * Otherwise, it is accesses from global memory. + * Otherwise, it is accessed from global memory. */ struct cuda_array_ref_group { /* The references in this group access this array. */ @@ -1819,7 +1819,7 @@ static void print_stmt_body(struct cuda_gen *gen, } /* This function is called for each leaf in the innermost clast, - * i.e., for each statemetn. + * i.e., for each statement. * We print the statement body, simplifying the accesses based * on the schedule. */ -- 2.11.4.GIT