aboutsummaryrefslogtreecommitdiff
path: root/libiberty
diff options
context:
space:
mode:
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2018-03-02 20:20:37 +0000
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>2018-03-02 20:20:37 +0000
commite77fdc2615075aa7bb4f2cd192e0fce3cbbd8df1 (patch)
treeb81e2f34cb3a7f8ad94e3f2269bed5248b0c95d2 /libiberty
parent7ac1c1d7826e4593c93c4913967cbda3ead9ba63 (diff)
libiberty: fix URL for demangler ABI
libiberty/ChangeLog: * cp-demangle.c: Update URL for g++ V3 ABI. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@258155 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r--libiberty/ChangeLog4
-rw-r--r--libiberty/cp-demangle.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog
index 63558926ef9..f326f073429 100644
--- a/libiberty/ChangeLog
+++ b/libiberty/ChangeLog
@@ -1,3 +1,7 @@
+2018-03-02 David Malcolm <dmalcolm@redhat.com>
+
+ * cp-demangle.c: Update URL for g++ V3 ABI.
+
2018-01-20 Eli Zaretskii <eliz@gnu.org>
* simple-object-xcoff.c (simple_object_xcoff_find_sections): Use
diff --git a/libiberty/cp-demangle.c b/libiberty/cp-demangle.c
index 1d5b855ddf2..3f2a097e7f2 100644
--- a/libiberty/cp-demangle.c
+++ b/libiberty/cp-demangle.c
@@ -30,7 +30,7 @@
/* This code implements a demangler for the g++ V3 ABI. The ABI is
described on this web page:
- http://www.codesourcery.com/cxx-abi/abi.html#mangling
+ https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
This code was written while looking at the demangler written by
Alex Samuel <samuel@codesourcery.com>.