Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Initial perf jitdump implementation #26897

Merged
merged 7 commits into from
Oct 7, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Correct JIT_DUMP_MAGIC
Writer should always write the same value, independent of endianness.
  • Loading branch information
sdmaclea committed Oct 3, 2019
commit 9bd19d0390517f8636d33d25dbf3925e38b8cbea
4 changes: 0 additions & 4 deletions src/pal/src/misc/perfjitdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ namespace
{
enum
{
#ifdef BIGENDIAN
JIT_DUMP_MAGIC = 0x4454694A,
#else
JIT_DUMP_MAGIC = 0x4A695444,
#endif
JIT_DUMP_VERSION = 1,

#if defined(_X86_)
Expand Down