Commit 62f28b99 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Make NullTypeAnalysis work again

parent d7932903
......@@ -35,6 +35,10 @@ class NullTypeAnalysis : public TypeAnalysis {
public:
virtual ConcreteCompilerType* getTypeAtBlockStart(const std::string& name, CFGBlock* block);
virtual ConcreteCompilerType* getTypeAtBlockEnd(const std::string& name, CFGBlock* block);
BoxedClass* speculatedExprClass(AST_expr*) override {
return NULL;
}
};
ConcreteCompilerType* NullTypeAnalysis::getTypeAtBlockStart(const std::string& name, CFGBlock* block) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment