We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d66194 commit eb108aeCopy full SHA for eb108ae
gen/port.cpp
@@ -24,6 +24,9 @@ double Port::dbl_max;
24
double Port::dbl_min;
25
longdouble Port::ldbl_max;
26
27
+bool Port::yl2x_supported = false;
28
+bool Port::yl2xp1_supported = false;
29
+
30
void ldc::port_init()
31
{
32
Port::nan = llvm::APFloat::getNaN(llvm::APFloat::IEEEdouble).convertToDouble();
@@ -77,6 +80,16 @@ int Port::fequal(longdouble x, longdouble y)
77
80
return longdouble::fequal(x, y);
78
81
}
79
82
83
+void Port::yl2x_impl(longdouble* x, longdouble* y, longdouble* res)
84
+{
85
+ assert(0);
86
+}
87
88
+void Port::yl2xp1_impl(longdouble* x, longdouble* y, longdouble* res)
89
90
91
92
93
int Port::memicmp(const char *s1, const char *s2, int n)
94
95
#if HAVE_MEMICMP
0 commit comments