Skip to content
Merged
Show file tree
Hide file tree
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
Try to fix PR job
  • Loading branch information
davidwrighton committed Aug 19, 2022
commit 4fab4d37a17e808a866d08d61e85f88bbc0ad614
4 changes: 2 additions & 2 deletions src/coreclr/nativeaot/Runtime/inc/ModuleHeaders.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ struct ReadyToRunHeaderConstants
{
static const uint32_t Signature = 0x00525452; // 'RTR'

static const uint32_t CurrentMajorVersion = 7;
static const uint32_t CurrentMinorVersion = 1;
static const uint32_t CurrentMajorVersion = 8;
static const uint32_t CurrentMinorVersion = 0;
};

struct ReadyToRunHeader
Expand Down
1 change: 1 addition & 0 deletions src/tests/Interop/PInvoke/Int128/Int128Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using System.Runtime.InteropServices;
using Xunit;


struct StructJustInt128
{
public StructJustInt128(Int128 val) { value = val; }
Expand Down