Static analysis for partial C++ programs
I'm thinking about doing some static analysis project over C++ code samples , as opposed to entire programs. In general static analysis requires some simpler intermediate representation, but such a representation cannot be accurately created without the entire program code. Still, I know there is such a tool for Java - it basically "guesses" missing information and thus allows static analysis to take place even though it's no longer sound or complete. Is there anything similar that can be used to convert partial C++ code into some intermediate form (e.g. LLVM bytecode)? Ira Baxter As a general