Commit a077670c authored by Kevin Modzelewski's avatar Kevin Modzelewski

Disable type recording from the LLVM tier

parent b8307d6a
......@@ -493,7 +493,10 @@ private:
assert(ast);
EffortLevel effort = irstate->getEffortLevel();
bool record_types = effort != EffortLevel::MAXIMAL;
// This is the only place we create type recorders for the llvm tier;
// if we are ok with never doing that there's a bunch of code that could
// be removed.
bool record_types = false;
TypeRecorder* type_recorder;
if (record_types) {
......
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