Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/coreclr/jit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@ set( JIT_SOURCES
hwintrinsic.cpp
hostallocator.cpp
indirectcalltransformer.cpp
importercalls.cpp
importer.cpp
importer_vectorization.cpp
importervectorization.cpp
inline.cpp
inlinepolicy.cpp
instr.cpp
Expand Down Expand Up @@ -154,7 +155,7 @@ set( JIT_SOURCES
rationalize.cpp
redundantbranchopts.cpp
regalloc.cpp
register_arg_convention.cpp
registerargconvention.cpp
regset.cpp
scopeinfo.cpp
sideeffects.cpp
Expand Down Expand Up @@ -332,7 +333,7 @@ set( JIT_HEADERS
rangecheck.h
rationalize.h
regalloc.h
register_arg_convention.h
registerargconvention.h
register.h
regset.h
sideeffects.h
Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/jit/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct InfoHdr; // defined in GCInfo.h
struct escapeMapping_t; // defined in fgdiagnostic.cpp
class emitter; // defined in emit.h
struct ShadowParamVarInfo; // defined in GSChecks.cpp
struct InitVarDscInfo; // defined in register_arg_convention.h
struct InitVarDscInfo; // defined in registerargconvention.h
class FgStack; // defined in fgbasic.cpp
class Instrumentor; // defined in fgprofile.cpp
class SpanningTreeVisitor; // defined in fgprofile.cpp
Expand Down
Loading