File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.8 ' ,
39
+ 'v8_embedder_string' : '-node.9 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change 27
27
28
28
#if defined(V8_OS_AIX)
29
29
#include < fenv.h> // NOLINT(build/c++11)
30
+
31
+ #include " src/wasm/float16.h"
30
32
#endif
31
33
32
34
#ifdef _MSC_VER
@@ -814,6 +816,13 @@ T FpOpWorkaround(T input, T value) {
814
816
}
815
817
return value;
816
818
}
819
+
820
+ template <>
821
+ inline Float16 FpOpWorkaround (Float16 input, Float16 value) {
822
+ float result = FpOpWorkaround (input.ToFloat32 (), value.ToFloat32 ());
823
+ return Float16::FromFloat32 (result);
824
+ }
825
+
817
826
#endif
818
827
819
828
V8_EXPORT_PRIVATE bool PassesFilter (base::Vector<const char > name,
You can’t perform that action at this time.
0 commit comments