summaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorPat Gavlin <pagavlin@microsoft.com>2016-10-03 14:38:22 -0700
committerPat Gavlin <pagavlin@microsoft.com>2016-10-03 14:38:22 -0700
commit9bb28609338ce6ba7008704234477916165e7914 (patch)
tree09e9a8857414124268cc85992d2eb16a8ca136fe /src/jit
parent5e93edd7fd6f21e2364a864e18c1098148d81109 (diff)
downloadcoreclr-9bb28609338ce6ba7008704234477916165e7914.tar.gz
coreclr-9bb28609338ce6ba7008704234477916165e7914.tar.bz2
coreclr-9bb28609338ce6ba7008704234477916165e7914.zip
Add comment anchors.
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/lower.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jit/lower.cpp b/src/jit/lower.cpp
index 4fb49792b9..f77431ea35 100644
--- a/src/jit/lower.cpp
+++ b/src/jit/lower.cpp
@@ -2615,6 +2615,7 @@ void Lowering::InsertPInvokeMethodProlog()
// --------------------------------------------------------
// On 32-bit targets, CORINFO_HELP_INIT_PINVOKE_FRAME initializes the PInvoke frame and then pushes it onto
// the current thread's Frame stack. On 64-bit targets, it only initializes the PInvoke frame.
+ CLANG_FORMAT_COMMENT_ANCHOR;
#ifdef _TARGET_64BIT_
if (comp->opts.eeFlags & CORJIT_FLG_IL_STUB)
@@ -2690,6 +2691,7 @@ void Lowering::InsertPInvokeMethodEpilog(BasicBlock* returnBB DEBUGARG(GenTreePt
// Pop the frame if necessary. This always happens in the epilog on 32-bit targets. For 64-bit targets, we only do
// this in the epilog for IL stubs; for non-IL stubs the frame is popped after every PInvoke call.
+ CLANG_FORMAT_COMMENT_ANCHOR;
#ifdef _TARGET_64BIT_
if (comp->opts.eeFlags & CORJIT_FLG_IL_STUB)
@@ -2831,6 +2833,7 @@ void Lowering::InsertPInvokeCallProlog(GenTreeCall* call)
// Push the PInvoke frame if necessary. On 32-bit targets this only happens in the method prolog if a method
// contains PInvokes; on 64-bit targets this is necessary in non-stubs.
+ CLANG_FORMAT_COMMENT_ANCHOR;
#ifdef _TARGET_64BIT_
if (!(comp->opts.eeFlags & CORJIT_FLG_IL_STUB))
@@ -2898,6 +2901,7 @@ void Lowering::InsertPInvokeCallEpilog(GenTreeCall* call)
// Pop the frame if necessary. On 32-bit targets this only happens in the method epilog; on 64-bit targets thi
// happens after every PInvoke call in non-stubs.
+ CLANG_FORMAT_COMMENT_ANCHOR;
#ifdef _TARGET_64BIT_
if (!(comp->opts.eeFlags & CORJIT_FLG_IL_STUB))