summaryrefslogtreecommitdiff
path: root/src/jit/codegenarm.cpp
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2016-05-14 23:53:51 -0700
committerJan Kotas <jkotas@microsoft.com>2016-05-14 23:53:51 -0700
commita3777d85f0c65a552b0f3d9e43035ffaca14261d (patch)
tree9682ef0ae1519a7d98cbcdea7f36bca59b0eb83e /src/jit/codegenarm.cpp
parentbd7549da15efca09231ac09091c7b8b1a9c29f17 (diff)
downloadcoreclr-a3777d85f0c65a552b0f3d9e43035ffaca14261d.tar.gz
coreclr-a3777d85f0c65a552b0f3d9e43035ffaca14261d.tar.bz2
coreclr-a3777d85f0c65a552b0f3d9e43035ffaca14261d.zip
Remove unneeded INLINE_NDIRECT and INLINE_PINVOKE #ifdefs (#4977)
Diffstat (limited to 'src/jit/codegenarm.cpp')
-rw-r--r--src/jit/codegenarm.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/jit/codegenarm.cpp b/src/jit/codegenarm.cpp
index a3f5a005a5..88925c272c 100644
--- a/src/jit/codegenarm.cpp
+++ b/src/jit/codegenarm.cpp
@@ -226,16 +226,13 @@ void CodeGen::genCodeForBBlist()
regSet.rsSetRegsModified(RBM_INT_CALLEE_SAVED & ~RBM_FPBASE);
}
-#if INLINE_NDIRECT
/* If we have any pinvoke calls, we might potentially trash everything */
- if (compiler->info.compCallUnmanaged)
+ if (compiler->info.compCallUnmanaged)
{
noway_assert(isFramePointerUsed()); // Setup of Pinvoke frame currently requires an EBP style frame
regSet.rsSetRegsModified(RBM_INT_CALLEE_SAVED & ~RBM_FPBASE);
}
-#endif // INLINE_NDIRECT
-
genPendingCallLabel = nullptr;
/* Initialize the pointer tracking code */