summaryrefslogtreecommitdiff
path: root/src/jit/lsra.cpp
diff options
context:
space:
mode:
authorBrian Sullivan <briansul@microsoft.com>2017-11-06 10:18:17 -0800
committerGitHub <noreply@github.com>2017-11-06 10:18:17 -0800
commitdf4326b4090da907ce7eec986308cd0e0f616583 (patch)
treee2fdae92c72c5c00768aa57818ab3eabef78b805 /src/jit/lsra.cpp
parente43ad4879bce00a9881f929d2d7282304f3b146f (diff)
parentf315d8700f84c47cfcbb90223c05f499e6fc4157 (diff)
downloadcoreclr-df4326b4090da907ce7eec986308cd0e0f616583.tar.gz
coreclr-df4326b4090da907ce7eec986308cd0e0f616583.tar.bz2
coreclr-df4326b4090da907ce7eec986308cd0e0f616583.zip
Merge pull request #14506 from mikedn/alloc-mess
Streamline JIT memory allocation
Diffstat (limited to 'src/jit/lsra.cpp')
-rw-r--r--src/jit/lsra.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/lsra.cpp b/src/jit/lsra.cpp
index 00ae44471d..5256d3714d 100644
--- a/src/jit/lsra.cpp
+++ b/src/jit/lsra.cpp
@@ -1119,7 +1119,7 @@ LinearScanInterface* getLinearScanAllocator(Compiler* comp)
LinearScan::LinearScan(Compiler* theCompiler)
: compiler(theCompiler)
#if MEASURE_MEM_ALLOC
- , lsraIAllocator(nullptr)
+ , lsraAllocator(nullptr)
#endif // MEASURE_MEM_ALLOC
, intervals(LinearScanMemoryAllocatorInterval(theCompiler))
, refPositions(LinearScanMemoryAllocatorRefPosition(theCompiler))