x86_64: Fix svml_d_tan2_core_sse4.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 160e183a9a
commit 7f852d2592

View File

@ -66,7 +66,6 @@
#include <sysdep.h> #include <sysdep.h>
.text
.section .text.sse4, "ax", @progbits .section .text.sse4, "ax", @progbits
ENTRY(_ZGVbN2v_tan_sse4) ENTRY(_ZGVbN2v_tan_sse4)
subq $72, %rsp subq $72, %rsp
@ -689,8 +688,7 @@ END(_ZGVbN2v_tan_sse4)
#ifdef __svml_dtan_data_internal_typedef #ifdef __svml_dtan_data_internal_typedef
typedef unsigned int VUINT32; typedef unsigned int VUINT32;
typedef struct typedef struct {
{
__declspec(align(16)) VUINT32 _dAbsMask[2][2]; __declspec(align(16)) VUINT32 _dAbsMask[2][2];
__declspec(align(16)) VUINT32 _dRangeVal[2][2]; __declspec(align(16)) VUINT32 _dRangeVal[2][2];
__declspec(align(16)) VUINT32 _dRShift[2][2]; __declspec(align(16)) VUINT32 _dRShift[2][2];
@ -4078,8 +4076,7 @@ __svml_dtan_data_internal:
#ifdef __svml_dtan_reduction_data_internal_typedef #ifdef __svml_dtan_reduction_data_internal_typedef
typedef unsigned int VUINT32; typedef unsigned int VUINT32;
typedef struct typedef struct {
{
__declspec(align(16)) VUINT32 _dPtable[2048][3][2]; __declspec(align(16)) VUINT32 _dPtable[2048][3][2];
} __svml_dtan_reduction_data_internal; } __svml_dtan_reduction_data_internal;
#endif #endif