Skip to content

Commit e5f4df4

Browse files
authored
Remove c1 and c2 unreferenced local variable in _rot{l,r}{8,16} intrinsics reference
1 parent f8865ad commit e5f4df4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/intrinsics/rotl8-rotl16.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Unlike a left-shift operation, when executing a left rotation, the high-order bi
6161

6262
int main()
6363
{
64-
unsigned char c = 'A', c1, c2;
64+
unsigned char c = 'A';
6565

6666
for (int i = 0; i < 8; i++)
6767
{

docs/intrinsics/rotr8-rotr16.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Unlike a right-shift operation, when executing a right rotation, the low-order b
6161

6262
int main()
6363
{
64-
unsigned char c = 'A', c1, c2;
64+
unsigned char c = 'A';
6565

6666
for (int i = 0; i < 8; i++)
6767
{

0 commit comments

Comments
 (0)