Skip to content

Commit 65c171b

Browse files
committed
Cleanup comments
1 parent b85a71a commit 65c171b

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

src/coreclr/vm/frames.cpp

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1738,16 +1738,6 @@ BOOL TransitionFrame::Protects_Impl(OBJECTREF * ppORef)
17381738
}
17391739
#endif //defined (_DEBUG) && !defined (DACCESS_COMPILE)
17401740

1741-
//+----------------------------------------------------------------------------
1742-
//
1743-
// Method: TPMethodFrame::GcScanRoots public
1744-
//
1745-
// Synopsis: GC protects arguments on the stack
1746-
//
1747-
1748-
//
1749-
//+----------------------------------------------------------------------------
1750-
17511741
#ifdef FEATURE_COMINTEROP
17521742

17531743
#ifdef TARGET_X86

src/coreclr/vm/frames.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@
7474
// | | call count threshold is reached
7575
// | |
7676
// | +-ExternalMethodFrame - represents a call from an ExternalMethodThunk
77-
// | |
78-
// | +-TPMethodFrame - for calls on transparent proxy
7977
// |
8078
#ifdef FEATURE_COMINTEROP
8179
// +-UnmanagedToManagedFrame - this frame represents a transition from
@@ -1228,7 +1226,7 @@ class FramedMethodFrame : public TransitionFrame
12281226
{
12291227
#ifdef TARGET_AMD64
12301228
// Floating point spill area is between return value and transition block for frames that need it
1231-
// (code:TPMethodFrame and code:CLRToCOMMethodFrame)
1229+
// (code:CLRToCOMMethodFrame)
12321230
return -(4 * 0x10 /* floating point args */ + 0x8 /* alignment pad */ + TransitionBlock::GetNegSpaceSize()) + (iArg * 0x10);
12331231
#endif
12341232
}
@@ -1254,7 +1252,7 @@ class FramedMethodFrame : public TransitionFrame
12541252
TADDR p = GetTransitionBlock() - TransitionBlock::GetNegSpaceSize();
12551253
#endif
12561254
// Return value is right before the transition block (or floating point spill area on AMD64) for frames that need it
1257-
// (code:TPMethodFrame and code:CLRToCOMMethodFrame)
1255+
// (see code:CLRToCOMMethodFrame)
12581256
#ifdef ENREGISTERED_RETURNTYPE_MAXSIZE
12591257
p -= ENREGISTERED_RETURNTYPE_MAXSIZE;
12601258
#else

0 commit comments

Comments
 (0)