[clang] [NFC] Fix dead links in TargetCXXABI.def (PR #96348)
Mital Ashok via cfe-commits
cfe-commits at lists.llvm.org
Fri Jun 21 11:44:25 PDT 2024
https://github.com/MitalAshok created https://github.com/llvm/llvm-project/pull/96348
http://itanium-cxx-abi.github.io/cxx-abi/
> This website may be mirrored in many places, some of which may become stale. The current canonical location is:
> * http://itanium-cxx-abi.github.io/cxx-abi/
https://github.com/ARM-software/abi-aa
> This is the official place for the latest documents of the Application Binary Interface for the ArmĀ® Architecture, both for source files and officially released documents.
>From 702bae96f10c903d60b98430e13f57c5bb227849 Mon Sep 17 00:00:00 2001
From: Mital Ashok <mital at mitalashok.co.uk>
Date: Fri, 21 Jun 2024 19:36:01 +0100
Subject: [PATCH] [NFC] Fix dead links in TargetCXXABI.def
---
clang/include/clang/Basic/TargetCXXABI.def | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/clang/include/clang/Basic/TargetCXXABI.def b/clang/include/clang/Basic/TargetCXXABI.def
index 9501cca760945..c1de583cd4974 100644
--- a/clang/include/clang/Basic/TargetCXXABI.def
+++ b/clang/include/clang/Basic/TargetCXXABI.def
@@ -29,7 +29,7 @@
/// many compilers, including Clang and GCC.
///
/// It is documented here:
-/// http://www.codesourcery.com/public/cxx-abi/
+/// http://itanium-cxx-abi.github.io/cxx-abi/
ITANIUM_CXXABI(GenericItanium, "itanium")
/// The generic ARM ABI is a modified version of the Itanium ABI
@@ -46,8 +46,7 @@ ITANIUM_CXXABI(GenericItanium, "itanium")
/// - and more!
///
/// It is documented here:
-/// http://infocenter.arm.com
-/// /help/topic/com.arm.doc.ihi0041c/IHI0041C_cppabi.pdf
+/// https://github.com/ARM-software/abi-aa
ITANIUM_CXXABI(GenericARM, "arm")
/// The iOS ABI is a partial implementation of the ARM ABI.
@@ -65,8 +64,7 @@ ITANIUM_CXXABI(iOS, "ios")
/// ABI more closely, but we don't guarantee to follow it perfectly.
///
/// It is documented here:
-/// http://infocenter.arm.com
-/// /help/topic/com.arm.doc.ihi0059a/IHI0059A_cppabi64.pdf
+/// https://github.com/ARM-software/abi-aa
ITANIUM_CXXABI(AppleARM64, "applearm64")
/// WatchOS is a modernisation of the iOS ABI, which roughly means it's
More information about the cfe-commits
mailing list