aarch64: Indent preprocessor directives.

This commit is contained in:
Marcus Shawcroft 2012-11-20 23:14:25 +00:00
parent 0f28d32059
commit 5c5bd24ec1
7 changed files with 44 additions and 35 deletions

View File

@ -1,3 +1,12 @@
2012-11-20 Marcus Shawcroft <marcus.shawcroft@linaro.org>
* sysdeps/aarch64/fpu/s_fma.c: Indent preprocessor directives.
* sysdeps/aarch64/fpu/s_fmin.c: Likewise.
* sysdeps/aarch64/fpu/s_frint.c: Likewise.
* sysdeps/aarch64/fpu/s_frintf.c: Likewise.
* sysdeps/aarch64/fpu/s_lrint.c: Likewise.
* sysdeps/aarch64/fpu/s_lround.c: Likewise.
2012-11-20 Marcus Shawcroft <marcus.shawcroft@linaro.org>
* sysdeps/aarch64/dl-tlsdesc.S: Use range for copyright years.

View File

@ -19,16 +19,16 @@
#include <math.h>
#ifndef FUNC
#define FUNC fma
# define FUNC fma
#endif
#ifndef TYPE
#define TYPE double
#define REGS "d"
# define TYPE double
# define REGS "d"
#else
#ifndef REGS
#error REGS not defined
#endif
# ifndef REGS
# error REGS not defined
# endif
#endif
#define __CONCATX(a,b) __CONCAT(a,b)

View File

@ -19,20 +19,20 @@
#include <math.h>
#ifndef FUNC
#define FUNC fmin
# define FUNC fmin
#endif
#ifndef INSN
#define INSN "fminnm"
# define INSN "fminnm"
#endif
#ifndef TYPE
#define TYPE double
#define REGS "d"
# define TYPE double
# define REGS "d"
#else
#ifndef REGS
#error REGS not defined
#endif
# ifndef REGS
# error REGS not defined
# endif
#endif
#define __CONCATX(a,b) __CONCAT(a,b)

View File

@ -19,20 +19,20 @@
#include <math.h>
#ifndef FUNC
#error FUNC not defined
# error FUNC not defined
#endif
#ifndef TYPE
#define TYPE double
#define REGS "d"
# define TYPE double
# define REGS "d"
#else
#ifndef REGS
#error REGS not defined
#endif
# ifndef REGS
# error REGS not defined
# endif
#endif
#ifndef INSN
#error INSN not defined
# error INSN not defined
#endif
#define __CONCATX(a,b) __CONCAT(a,b)

View File

@ -17,7 +17,7 @@
<http://www.gnu.org/licenses/>. */
#ifndef FUNC
#error FUNC not defined
# error FUNC not defined
#endif
#define TYPE float
#define REGS "s"

View File

@ -19,20 +19,20 @@
#include <math.h>
#ifndef FUNC
#define FUNC lrint
# define FUNC lrint
#endif
#ifndef ITYPE
#define ITYPE double
#define IREGS "d"
# define ITYPE double
# define IREGS "d"
#else
#ifndef IREGS
#error IREGS not defined
#endif
# ifndef IREGS
# error IREGS not defined
# endif
#endif
#ifndef OTYPE
#define OTYPE long int
# define OTYPE long int
#endif
#define OREGS "x"

View File

@ -19,20 +19,20 @@
#include <math.h>
#ifndef FUNC
#define FUNC lround
# define FUNC lround
#endif
#ifndef ITYPE
#define ITYPE double
#define IREGS "d"
# define ITYPE double
# define IREGS "d"
#else
#ifndef IREGS
#error IREGS not defined
#endif
# ifndef IREGS
# error IREGS not defined
# endif
#endif
#ifndef OTYPE
#define OTYPE long int
# define OTYPE long int
#endif
#define OREGS "x"