diff options
author | merry <git@mary.rs> | 2022-08-25 11:12:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 10:12:13 +0000 |
commit | f5235fff29e797ed76022bbd51e4e64577c83457 (patch) | |
tree | f5d6be6efd9990cf74bf7272b62942a9438d9814 /ARMeilleure/Instructions/SoftFallback.cs | |
parent | eba682b767a60db51ff624ae48a3ca0124634705 (diff) |
ARMeilleure: Hardware accelerate SHA256 (#3585)1.1.230
* ARMeilleure/HardwareCapabilities: Add Sha
* ARMeilleure/Intrinsic: Add X86Sha256Rnds2
* ARmeilleure: Hardware accelerate SHA256H/SHA256H2
* ARMeilleure/Intrinsic: Add X86Sha256Msg1, X86Sha256Msg2
* ARMeilleure/Intrinsic: Add X86Palignr
* ARMeilleure: Hardware accelerate SHA256SU0, SHA256SU1
* PTC: Bump InternalVersion
Diffstat (limited to 'ARMeilleure/Instructions/SoftFallback.cs')
-rw-r--r-- | ARMeilleure/Instructions/SoftFallback.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ARMeilleure/Instructions/SoftFallback.cs b/ARMeilleure/Instructions/SoftFallback.cs index d9e43021..f83afc16 100644 --- a/ARMeilleure/Instructions/SoftFallback.cs +++ b/ARMeilleure/Instructions/SoftFallback.cs @@ -1129,7 +1129,7 @@ namespace ARMeilleure.Instructions return Sha256Hash(hash_abcd, hash_efgh, wk, part1: true); } - public static V128 HashUpper(V128 hash_efgh, V128 hash_abcd, V128 wk) + public static V128 HashUpper(V128 hash_abcd, V128 hash_efgh, V128 wk) { return Sha256Hash(hash_abcd, hash_efgh, wk, part1: false); } |