Skip to content

Commit e8e9049

Browse files
authored
Merge pull request #11 from Pengler38/main
Remove const from mutated variables
2 parents 509d053 + ad625c5 commit e8e9049

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lesson_01/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Here’s our first SIMD function:
119119
120120
SECTION .text
121121
122-
;static void add_values(const uint8_t *src, const uint8_t *src2)
122+
;static void add_values(uint8_t *src, const uint8_t *src2)
123123
INIT_XMM sse2
124124
cglobal add_values, 2, 2, 2, src, src2
125125
movu m0, [srcq]
@@ -147,7 +147,7 @@ SECTION .text
147147
This denotes the section where the code you want to execute is placed. This is in contrast to the .data section, where you can put constant data.
148148

149149
```assembly
150-
;static void add_values(const uint8_t *src, const uint8_t *src2);
150+
;static void add_values(uint8_t *src, const uint8_t *src2)
151151
INIT_XMM sse2
152152
```
153153

lesson_03/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ We use ptrdiff_t for the width variable instead of int to make sure that the upp
5656
The function below has the pointer offset trickery in it:
5757

5858
```assembly
59-
;static void add_values(const uint8_t *src, const uint8_t *src2, ptrdiff_t width)
59+
;static void add_values(uint8_t *src, const uint8_t *src2, ptrdiff_t width)
6060
INIT_XMM sse2
6161
cglobal add_values, 3, 3, 2, src, src2, width
6262
add srcq, widthq

0 commit comments

Comments
 (0)