diff options
author | Bruce Forstall <brucefo@microsoft.com> | 2016-11-29 08:56:19 -0800 |
---|---|---|
committer | Bruce Forstall <brucefo@microsoft.com> | 2016-11-29 08:56:19 -0800 |
commit | 3b21d92f677251957eabcece8fd9490f140d8945 (patch) | |
tree | eff087f68ae9204345a3544ee80de4924d635408 | |
parent | 8de587f3b6d45be23f5178f510e260e470f2ef4f (diff) | |
download | coreclr-3b21d92f677251957eabcece8fd9490f140d8945.tar.gz coreclr-3b21d92f677251957eabcece8fd9490f140d8945.tar.bz2 coreclr-3b21d92f677251957eabcece8fd9490f140d8945.zip |
Fix AMD64 CTP build break
[tfs-changeset: 1639770]
-rw-r--r-- | src/jit/lclvars.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jit/lclvars.cpp b/src/jit/lclvars.cpp index 7129ed6e17..f405b66695 100644 --- a/src/jit/lclvars.cpp +++ b/src/jit/lclvars.cpp @@ -3388,8 +3388,10 @@ void Compiler::lvaMarkLocalVars() #endif // !FEATURE_EH_FUNCLETS +#if COR_JIT_EE_VERSION > 460 // PSPSym and LocAllocSPvar are not used by the CoreRT ABI if (eeGetEEInfo()->targetAbi != CORINFO_CORERT_ABI) +#endif { #if FEATURE_EH_FUNCLETS if (ehNeedsPSPSym()) |