-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Closed
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI
Description
I assume a cross merge issue.
There is now no parameterless .Print() method
runtime/src/coreclr/src/jit/codegencommon.cpp
Lines 11307 to 11312 in 4f84429
| m_StartEmitLocation.Print(); | |
| printf(", "); | |
| if (m_EndEmitLocation.Valid()) | |
| { | |
| m_EndEmitLocation.Print(); | |
| } |
/Users/runner/runners/2.165.0/work/1/s/src/coreclr/src/jit/codegencommon.cpp:11307:31:
error: too few arguments to function call, single argument 'compMethodID' was not specified
m_StartEmitLocation.Print();
~~~~~~~~~~~~~~~~~~~~~~~~~ ^
/Users/runner/runners/2.165.0/work/1/s/src/coreclr/src/jit/emit.h:197:5:
note: 'Print' declared here
void Print(LONG compMethodID) const;
^
/Users/runner/runners/2.165.0/work/1/s/src/coreclr/src/jit/codegencommon.cpp:11311:33:
error: too few arguments to function call, single argument 'compMethodID' was not specified
m_EndEmitLocation.Print();
~~~~~~~~~~~~~~~~~~~~~~~ ^
/Users/runner/runners/2.165.0/work/1/s/src/coreclr/src/jit/emit.h:197:5:
note: 'Print' declared here
void Print(LONG compMethodID) const;
^
2 errors generated.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area-CodeGen-coreclrCLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMICLR JIT compiler in src/coreclr/src/jit and related components such as SuperPMI