summaryrefslogtreecommitdiff
path: root/src/jit/ssabuilder.h
diff options
context:
space:
mode:
authorMike Danes <onemihaid@hotmail.com>2017-10-14 13:14:33 +0300
committerMike Danes <onemihaid@hotmail.com>2017-10-15 13:29:45 +0300
commit6fb118726d77068ce2afd7b5badcd0dbea0f9477 (patch)
tree7c6cafdbf7f9f93493159c4ecbb198ff1b4f7c8c /src/jit/ssabuilder.h
parent6edd75ea1ae0631d3ff3c57b430d9f720159ebb1 (diff)
downloadcoreclr-6fb118726d77068ce2afd7b5badcd0dbea0f9477.tar.gz
coreclr-6fb118726d77068ce2afd7b5badcd0dbea0f9477.tar.bz2
coreclr-6fb118726d77068ce2afd7b5badcd0dbea0f9477.zip
Avoid using IAllocator
This tends to generate one virtual call for every allocation...
Diffstat (limited to 'src/jit/ssabuilder.h')
-rw-r--r--src/jit/ssabuilder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/ssabuilder.h b/src/jit/ssabuilder.h
index e82a4007e3..f69694f51d 100644
--- a/src/jit/ssabuilder.h
+++ b/src/jit/ssabuilder.h
@@ -62,7 +62,7 @@ private:
public:
// Constructor
- SsaBuilder(Compiler* pCompiler, IAllocator* pIAllocator);
+ SsaBuilder(Compiler* pCompiler, CompAllocator* pIAllocator);
// Requires stmt nodes to be already sequenced in evaluation order. Analyzes the graph
// for introduction of phi-nodes as GT_PHI tree nodes at the beginning of each block.