Skip to content

Commit

Permalink
[builtins] Replace __SOFT_FP__ with __SOFTFP__
Browse files Browse the repository at this point in the history
Fix PR46294

Differential Revision: https://reviews.llvm.org/D82014
  • Loading branch information
kamleshbhalui authored and MaskRay committed Feb 23, 2021
1 parent 6e1affe commit 1803599
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion compiler-rt/lib/builtins/fixdfdi.c
Expand Up @@ -9,7 +9,7 @@
#define DOUBLE_PRECISION
#include "fp_lib.h"

#ifndef __SOFT_FP__
#ifndef __SOFTFP__
// Support for systems that have hardware floating-point; can set the invalid
// flag as a side-effect of computation.

Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/lib/builtins/fixsfdi.c
Expand Up @@ -9,7 +9,7 @@
#define SINGLE_PRECISION
#include "fp_lib.h"

#ifndef __SOFT_FP__
#ifndef __SOFTFP__
// Support for systems that have hardware floating-point; can set the invalid
// flag as a side-effect of computation.

Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/lib/builtins/fixunsdfdi.c
Expand Up @@ -9,7 +9,7 @@
#define DOUBLE_PRECISION
#include "fp_lib.h"

#ifndef __SOFT_FP__
#ifndef __SOFTFP__
// Support for systems that have hardware floating-point; can set the invalid
// flag as a side-effect of computation.

Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/lib/builtins/fixunssfdi.c
Expand Up @@ -9,7 +9,7 @@
#define SINGLE_PRECISION
#include "fp_lib.h"

#ifndef __SOFT_FP__
#ifndef __SOFTFP__
// Support for systems that have hardware floating-point; can set the invalid
// flag as a side-effect of computation.

Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/lib/builtins/floatdidf.c
Expand Up @@ -20,7 +20,7 @@
// seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm
// mmmm

#ifndef __SOFT_FP__
#ifndef __SOFTFP__
// Support for systems that have hardware floating-point; we'll set the inexact
// flag as a side-effect of this computation.

Expand Down
2 changes: 1 addition & 1 deletion compiler-rt/lib/builtins/floatundidf.c
Expand Up @@ -20,7 +20,7 @@

#include "int_lib.h"

#ifndef __SOFT_FP__
#ifndef __SOFTFP__
// Support for systems that have hardware floating-point; we'll set the inexact
// flag as a side-effect of this computation.

Expand Down

0 comments on commit 1803599

Please sign in to comment.