x86_64: Fix svml_d_tan4_core_avx2.S code formatting

This commit contains following formatting changes

1. Instructions proceeded by a tab.
2. Instruction less than 8 characters in length have a tab
   between it and the first operand.
3. Instruction greater than 7 characters in length have a
   space between it and the first operand.
4. Tabs after `#define`d names and their value.
5. 8 space at the beginning of line replaced by tab.
6. Indent comments with code.
7. Remove redundent .text section.
8. 1 space between line content and line comment.
9. Space after all commas.

Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com>
This commit is contained in:
Sunil K Pandey 2022-03-07 10:47:15 -08:00
parent 7f852d2592
commit 7425f0c1e5

View File

@ -69,7 +69,6 @@
#include <sysdep.h>
.text
.section .text.avx2, "ax", @progbits
ENTRY(_ZGVdN4v_tan_avx2)
pushq %rbp
@ -769,8 +768,7 @@ END(_ZGVdN4v_tan_avx2)
#ifdef __svml_dtan_data_internal_typedef
typedef unsigned int VUINT32;
typedef struct
{
typedef struct {
__declspec(align(32)) VUINT32 _dAbsMask[4][2];
__declspec(align(32)) VUINT32 _dRangeVal[4][2];
__declspec(align(32)) VUINT32 _dRShift[4][2];
@ -4167,8 +4165,7 @@ __svml_dtan_data_internal:
#ifdef __svml_dtan_reduction_data_internal_typedef
typedef unsigned int VUINT32;
typedef struct
{
typedef struct {
__declspec(align(32)) VUINT32 _dPtable[2048][3][2];
} __svml_dtan_reduction_data_internal;
#endif