git: 29b24187ac37 - stable/12 - arm64: fix uintfptr_t
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Dec 2021 18:10:36 UTC
The branch stable/12 has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=29b24187ac374d1ede6e48f0af6ddb8ff36d34c8 commit 29b24187ac374d1ede6e48f0af6ddb8ff36d34c8 Author: Mateusz Guzik <mjg@FreeBSD.org> AuthorDate: 2020-08-05 22:09:57 +0000 Commit: Mateusz Guzik <mjg@FreeBSD.org> CommitDate: 2021-12-20 18:09:33 +0000 arm64: fix uintfptr_t Fixes compilation after r363932 (cherry picked from commit 0ef3c62577fc37389ea46c9fc5accfb7706b6c01) Sponsored by: Rubicon Communications, LLC ("Netgate") --- sys/arm64/include/profile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm64/include/profile.h b/sys/arm64/include/profile.h index 087af0504c75..afbfbdb44c0b 100644 --- a/sys/arm64/include/profile.h +++ b/sys/arm64/include/profile.h @@ -70,7 +70,7 @@ void mcount(uintfptr_t frompc, uintfptr_t selfpc); #else /* !_KERNEL */ -typedef unsigned long long uintfptr_t; +typedef __uintfptr_t uintfptr_t; #define _MCOUNT_DECL void mcount #define MCOUNT