Skip to content

Commit 3da9705

Browse files
committed
-fdenormal-fp-math-f32 -> -fdenormal-fp-math
1 parent 7b290a2 commit 3da9705

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libclc/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ foreach( t ${LIBCLC_TARGETS_TO_BUILD} )
412412
# Error on undefined macros
413413
-Werror=undef
414414
-fdiscard-value-names
415-
-Xclang -fdenormal-fp-math-f32=dynamic
415+
-Xclang -fdenormal-fp-math=dynamic
416416
)
417417

418418
if( NOT "${cpu}" STREQUAL "" )

libclc/clc/lib/generic/math/clc_fma.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88

99
#include <clc/internal/clc.h>
10-
#include <clc/internal/math/clc_sw_fma.h>
10+
#include <clc/math/clc_fma.h>
1111
#include <clc/math/math.h>
1212

1313
#define __CLC_BODY <clc_fma.inc>

libclc/opencl/lib/clspv/math/fma.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <clc/internal/math/clc_sw_fma.h>
9+
#include <clc/math/clc_fma.h>
1010
#include <clc/opencl/math/fma.h>
1111

1212
#define __CLC_FLOAT_ONLY

libclc/opencl/lib/spirv/math/fma.cl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include <clc/internal/math/clc_sw_fma.h>
9+
#include <clc/math/clc_fma.h>
1010
#include <clc/opencl/math/fma.h>
1111

1212
#define __CLC_FLOAT_ONLY

0 commit comments

Comments
 (0)