Change ABI string from sysV64 to sysv64

This commit is contained in:
CensoredUsername 2016-07-07 10:27:30 +02:00
parent 516519ee9a
commit 30c4173cb8
2 changed files with 2 additions and 2 deletions

View File

@ -539,7 +539,7 @@ This is currently hidden behind the `abi_vectorcall` gate and is subject to chan
* `system`
* `C`
* `win64`
* `sysV64`
* `sysv64`
Most of the abis in this list are self-explanatory, but the `system` abi may
seem a little odd. This constraint selects whatever the appropriate ABI is for

View File

@ -87,7 +87,7 @@ const AbiDatas: &'static [AbiData] = &[
AbiData {abi: Abi::Vectorcall, name: "vectorcall"},
AbiData {abi: Abi::Aapcs, name: "aapcs" },
AbiData {abi: Abi::Win64, name: "win64" },
AbiData {abi: Abi::SysV64, name: "sysV64" },
AbiData {abi: Abi::SysV64, name: "sysv64" },
// Cross-platform ABIs
//