[PATCH 1/2] kern/strings.c (strlen): mark with attribute pure

2013-12-19 Thread Marin Ramesa
* kern/strings.c (strlen): Mark with attribute pure. --- kern/strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kern/strings.c b/kern/strings.c index 0752722..72eb4f3 100644 --- a/kern/strings.c +++ b/kern/strings.c @@ -161,7 +161,7 @@ strncpy( * the terminating

Re: [PATCH 1/2] kern/strings.c (strlen): mark with attribute pure

2013-12-19 Thread Samuel Thibault
Marin Ramesa, le Thu 19 Dec 2013 18:51:05 +0100, a écrit : * kern/strings.c (strlen): Mark with attribute pure. Also add the attribute to the header. It's actually *there* that it is useful, for the caller to know that the function calls can be optimized away. --- kern/strings.c | 2 +- 1