arm.c: Clarify error message in thumb1_expand_prologue
authorChristophe Lyon <christophe.lyon@linaro.org>
Tue, 5 May 2020 14:18:13 +0000 (14:18 +0000)
committerChristophe Lyon <christophe.lyon@linaro.org>
Thu, 14 May 2020 15:34:30 +0000 (15:34 +0000)
While running the tests with -march=armv5t -mthumb, I came across this
error message which I think could be clearer.

2020-05-14  Christophe Lyon  <christophe.lyon@linaro.org>

gcc/
* config/arm/arm.c (thumb1_expand_prologue): Update error message.

gcc/ChangeLog
gcc/config/arm/arm.c

index 072ad0828523f664971f986e7c5cf93af4db72b4..6b707cd1f0899d6156da054a69ea3b7548ee87ef 100644 (file)
@@ -1,3 +1,7 @@
+2020-05-14  Christophe Lyon  <christophe.lyon@linaro.org>
+
+        * config/arm/arm.c (thumb1_expand_prologue): Update error message.
+
 2020-05-14  Uroš Bizjak  <ubizjak@gmail.com>
 
        PR target/95046
index 56d6be029960582006898a70fdb0b668280ec039..98abda6a6f0c8ab07a5c37817f01116163a83df0 100644 (file)
@@ -26501,7 +26501,7 @@ thumb1_expand_prologue (void)
 
   if (IS_INTERRUPT (func_type))
     {
-      error ("interrupt Service Routines cannot be coded in Thumb mode");
+      error ("Interrupt Service Routines cannot be coded in Thumb-1 mode");
       return;
     }