Skip to content

Commit 5b087e1

Browse files
committed
exclude browser for now
1 parent 33e439d commit 5b087e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/coreclr/vm/codeman.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4570,7 +4570,7 @@ void InterpreterJitManager::JitTokenToMethodRegionInfo(const METHODTOKEN& Method
45704570
methodRegionInfo->coldSize = 0;
45714571
}
45724572

4573-
#if !defined(DACCESS_COMPILE)
4573+
#if !defined(DACCESS_COMPILE) && !defined(TARGET_BROWSER)
45744574
IExecutionControl* InterpreterJitManager::GetExecutionControl()
45754575
{
45764576
LIMITED_METHOD_CONTRACT;

src/coreclr/vm/codeman.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2874,7 +2874,7 @@ class InterpreterJitManager final : public EECodeGenManager
28742874
return STUB_CODE_BLOCK_UNKNOWN;
28752875
}
28762876

2877-
#if !defined(DACCESS_COMPILE)
2877+
#if !defined(DACCESS_COMPILE) && !defined(TARGET_BROWSER)
28782878
// Return execution control for interpreter bytecode breakpoints
28792879
virtual IExecutionControl* GetExecutionControl();
28802880
#endif

0 commit comments

Comments
 (0)