Skip to content

Commit 50554a2

Browse files
committed
Fixed llvm_minnum_f32/llvm_maxnum_f32 return types
1 parent 8ca62ab commit 50554a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/core/test_llvm_intrinsics.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ extern double llvm_copysign_f64(double x, double y);
3737

3838
extern double llvm_round_f64(double x);
3939
extern double llvm_round_f32(double x);
40-
extern double llvm_minnum_f32(float x, float y);
40+
extern float llvm_minnum_f32(float x, float y);
4141
extern double llvm_minnum_f64(double x, double y);
42-
extern double llvm_maxnum_f32(float x, float y);
42+
extern float llvm_maxnum_f32(float x, float y);
4343
extern double llvm_maxnum_f64(double x, double y);
4444
}
4545

0 commit comments

Comments
 (0)