-
I'm attempting to analyse a large (~2500 source file) C++ project (see #3309 for background). I've got the CTU scanner running using clang-12, however I'm seeing a large number of clang errors of the form:
See below for additional error message details. Is this a known issue / any workarounds possible - or should I raise a bug with llvm as directed to in the error message?
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
This problem is related to the Clang Static Analyzer, so please raise a ticket on https://bugs.llvm.org/. Maybe @martong knows something about this problem, because he is contributing to the analyzer itself. |
Beta Was this translation helpful? Give feedback.
-
Thank you for the report! The import of a Normally an unsupported node shouldn't result in a crash, but most probably there is another error which happens when our clean up mechanism - to handle the unsupported AST node - kicks in. That is a known problem and we are working on that. |
Beta Was this translation helpful? Give feedback.
-
The other one is still under review: |
Beta Was this translation helpful? Give feedback.
Thank you for the report!
The import of a
Binding
is not yet implemented in theASTImporter
.I am taking this issue to our internal tracker and will come back to here once we implement it.
Normally an unsupported node shouldn't result in a crash, but most probably there is another error which happens when our clean up mechanism - to handle the unsupported AST node - kicks in. That is a known problem and we are working on that.