aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/riscv/riscv.cc4
-rw-r--r--gcc/testsuite/gcc.target/riscv/predef-9.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/riscv/riscv.cc b/gcc/config/riscv/riscv.cc
index b005af6..3f7eec8 100644
--- a/gcc/config/riscv/riscv.cc
+++ b/gcc/config/riscv/riscv.cc
@@ -9826,8 +9826,8 @@ riscv_option_override (void)
if (riscv_abi == ABI_LP64E)
{
if (warning (OPT_Wdeprecated, "LP64E ABI is marked for deprecation in GCC"))
- inform (UNKNOWN_LOCATION, "If you need LP64E please notify the GCC "
- "project via https://gcc.gnu.org/PR116152");
+ inform (UNKNOWN_LOCATION, "if you need LP64E please notify the GCC "
+ "project via %{PR116152%}", "https://gcc.gnu.org/PR116152");
}
/* Zfinx require abi ilp32, ilp32e, lp64 or lp64e. */
diff --git a/gcc/testsuite/gcc.target/riscv/predef-9.c b/gcc/testsuite/gcc.target/riscv/predef-9.c
index 0d94885..b173d5d 100644
--- a/gcc/testsuite/gcc.target/riscv/predef-9.c
+++ b/gcc/testsuite/gcc.target/riscv/predef-9.c
@@ -1,7 +1,7 @@
/* { dg-do compile } */
/* { dg-options "-march=rv64em -mabi=lp64e -mno-div -mcmodel=medlow" } */
/* { dg-warning "LP64E ABI is marked for deprecation in GCC" "" { target *-*-* } 0 } */
-/* { dg-note "If you need LP64E please notify the GCC project via https://gcc.gnu.org/PR116152" "" { target *-*-* } 0 } */
+/* { dg-note "if you need LP64E please notify the GCC project via PR116152" "" { target *-*-* } 0 } */
int main () {
#if !defined(__riscv)