Skip to content

Commit

Permalink
Fixing the return type of the ArmBase.ReverseElementBits methods in t…
Browse files Browse the repository at this point in the history
…he PlatformNotSupported file (dotnet/coreclr#27672)

Commit migrated from dotnet/coreclr@b2f98b9
  • Loading branch information
tannergooding authored Nov 5, 2019
1 parent 3a0b32b commit 5e6d4b6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ internal Arm64() { }
/// <summary>
/// A64: RBIT Xd, Xn
/// </summary>
public static int ReverseElementBits(long value) { throw new PlatformNotSupportedException(); }
public static long ReverseElementBits(long value) { throw new PlatformNotSupportedException(); }

/// <summary>
/// A64: RBIT Xd, Xn
/// </summary>
public static int ReverseElementBits(ulong value) { throw new PlatformNotSupportedException(); }
public static ulong ReverseElementBits(ulong value) { throw new PlatformNotSupportedException(); }
}

/// <summary>
Expand All @@ -76,6 +76,6 @@ internal Arm64() { }
/// A32: RBIT Rd, Rm
/// A64: RBIT Wd, Wn
/// </summary>
public static int ReverseElementBits(uint value) { throw new PlatformNotSupportedException(); }
public static uint ReverseElementBits(uint value) { throw new PlatformNotSupportedException(); }
}
}

0 comments on commit 5e6d4b6

Please sign in to comment.