Index: head/lang/gcc10-devel/files/patch-analyzer =================================================================== --- head/lang/gcc10-devel/files/patch-analyzer (nonexistent) +++ head/lang/gcc10-devel/files/patch-analyzer (revision 524659) @@ -0,0 +1,26 @@ +Provided by David Malcolm to address a build +failure with clang 9.0.1. + +--- UTC +Index: gcc/analyzer/engine.cc +=================================================================== +--- gcc/analyzer/engine.cc ++++ gcc/analyzer/engine.cc +@@ -2940,7 +2940,7 @@ template <> + inline void + pod_hash_traits::mark_empty (value_type &v) + { +- v.m_fun = reinterpret_cast (NULL); ++ v.m_fun = static_cast (NULL); + } + template <> + inline bool +@@ -2952,7 +2952,7 @@ template <> + inline bool + pod_hash_traits::is_empty (value_type v) + { +- return v.m_fun == reinterpret_cast (NULL); ++ return v.m_fun == static_cast (NULL); + } + + namespace ana { Property changes on: head/lang/gcc10-devel/files/patch-analyzer ___________________________________________________________________ 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