Index: Makefile =================================================================== --- Makefile (revision 495005) +++ Makefile (working copy) @@ -19,13 +19,6 @@ GH_ACCOUNT= moddevices GH_TAGNAME= 072e2fe -# It suffers from the regression in clang-6: https://bugs.llvm.org/show_bug.cgi?id=36916 -LLVM_VER= 50 -BUILD_DEPENDS+= clang${LLVM_VER}:devel/llvm${LLVM_VER} -CPP= clang-cpp${LLVM_VER} -CC= clang${LLVM_VER} -CXX= clang++${LLVM_VER} - .if exists(/usr/lib/libstdc++.so) CXXFLAGS+= -stdlib=libstdc++ LDFLAGS+= -stdlib=libstdc++ Index: files/patch-dsp_v4f.h =================================================================== --- files/patch-dsp_v4f.h (nonexistent) +++ files/patch-dsp_v4f.h (working copy) @@ -0,0 +1,16 @@ +--- dsp/v4f.h.orig ++++ dsp/v4f.h +@@ -150,10 +150,10 @@ + { + v4f_t *y = data(); + v4f_t w = -v4f_pi * f; +- y[0] = v4f_map<__builtin_sinf> (w); +- y[1] = v4f_map<__builtin_sinf> (v4f_2 * w); ++ y[0] = v4f_map (w); ++ y[1] = v4f_map (v4f_2 * w); + /* b in above scalar implementation is y[2] in the flat data */ +- y[2] = v4f_2 * v4f_map<__builtin_cosf> (w); /* b */ ++ y[2] = v4f_2 * v4f_map (w); /* b */ + z = 0; + } + Property changes on: files/patch-dsp_v4f.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/patch-dsp_v4f__IIR2.h =================================================================== --- files/patch-dsp_v4f__IIR2.h (nonexistent) +++ files/patch-dsp_v4f__IIR2.h (working copy) @@ -0,0 +1,25 @@ +--- dsp/v4f_IIR2.h.orig ++++ dsp/v4f_IIR2.h +@@ -45,8 +45,8 @@ + { + v4f_t w = v4f_2pi * f; + +- sin = v4f_map<__builtin_sinf> (w); +- cos = v4f_map<__builtin_cosf> (w); ++ sin = v4f_map (w); ++ cos = v4f_map (w); + + alpha = sin / (v4f_2 * Q); + } +@@ -549,9 +549,9 @@ + { + v4f_t * a = state + i*Item; + f *= v4f_2pi; +- a[0] = v4f_map<__builtin_sinf> (f); ++ a[0] = v4f_map (f); + a[0] *= gain; +- a[5] = v4f_map<__builtin_cosf> (f); ++ a[5] = v4f_map (f); + set_r (i, r); + } + void set_r (int i, v4f_t r) Property changes on: files/patch-dsp_v4f__IIR2.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property