Skip to content

Commit 587bb33

Browse files
kamleshbhaluimemfrob
authored andcommitted
[builtins] Replace __SOFT_FP__ with __SOFTFP__
Fix PR46294 Differential Revision: https://reviews.llvm.org/D82014
1 parent d7df972 commit 587bb33

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

compiler-rt/lib/builtins/fixdfdi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define DOUBLE_PRECISION
1010
#include "fp_lib.h"
1111

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

compiler-rt/lib/builtins/fixsfdi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define SINGLE_PRECISION
1010
#include "fp_lib.h"
1111

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

compiler-rt/lib/builtins/fixunsdfdi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define DOUBLE_PRECISION
1010
#include "fp_lib.h"
1111

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

compiler-rt/lib/builtins/fixunssfdi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define SINGLE_PRECISION
1010
#include "fp_lib.h"
1111

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

compiler-rt/lib/builtins/floatdidf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm
2121
// mmmm
2222

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

compiler-rt/lib/builtins/floatundidf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#include "int_lib.h"
2222

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

0 commit comments

Comments
 (0)