Skip to content

Commit

Permalink
case
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Dec 31, 2024
1 parent cea3826 commit 72bc918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numerics/sin_cos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ static bool OSACA_loop_terminator = false;
* through registers.*/ \

Check warning on line 41 in numerics/sin_cos.cpp

View workflow job for this annotation

GitHub Actions / check-cpp

whitespace/indent

Weird number of spaces at line-start. Are you using a 2-space indent?
IACA_VC64_START; \
double OSACA_loop_carry = OSACA_input; \
OSACA_LOOP: \
OSACA_loop: \
arg = OSACA_loop_carry

#define OSACA_RETURN(result) \
OSACA_loop_carry = (result); \
if (!OSACA_loop_terminator) { \
goto OSACA_LOOP; \
goto OSACA_loop; \
} \
double volatile OSACA_result = OSACA_loop_carry; \
IACA_VC64_END; \
Expand Down

0 comments on commit 72bc918

Please sign in to comment.