Commit 394fa5d4 authored by Alexei Fedorov's avatar Alexei Fedorov
Browse files

AArch64: Add 128-bit integer types definitions



This patch adds 128-bit integer types int128_t and uint128_t
for "__int128" and "unsigned __int128" supported by GCC and
Clang for AArch64.

Change-Id: I0e646d026a5c12a09fd2c71dc502082052256a94
Signed-off-by: default avatarAlexei Fedorov <Alexei.Fedorov@arm.com>
parent 21bde92f
/*
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
......@@ -116,3 +116,6 @@ typedef unsigned long uintmax_t;
typedef long register_t;
typedef unsigned long u_register_t;
typedef __int128 int128_t;
typedef unsigned __int128 uint128_t;
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment