Commit 3501184a authored by Chris Toshok's avatar Chris Toshok

use an llvm::SmallDenseMap instead of llvm::DenseMap for ASTInterpreter's SymMap

parent 7425d09f
......@@ -77,7 +77,7 @@ public:
class ASTInterpreter : public Box {
public:
typedef ContiguousMap<InternedString, Box*> SymMap;
typedef ContiguousMap<InternedString, Box*, llvm::SmallDenseMap<InternedString, int, 16>> SymMap;
ASTInterpreter(CompiledFunction* compiled_function);
......
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