public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r13-136] [Committed] PR testsuite/105486: Use "signed char" in gcc.dg/pr102950.c
@ 2022-05-05 12:31 Roger Sayle
  0 siblings, 0 replies; only message in thread
From: Roger Sayle @ 2022-05-05 12:31 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:92fff39f06449f907d8781a5dcaad0e8b9743480

commit r13-136-g92fff39f06449f907d8781a5dcaad0e8b9743480
Author: Roger Sayle <roger@nextmovesoftware.com>
Date:   Thu May 5 08:30:27 2022 -0400

    [Committed] PR testsuite/105486: Use "signed char" in gcc.dg/pr102950.c
    
    Although the automated regression testing scripts for powerpc64 appear
    to be somewhat garbled at the moment, they've correctly identified that
    my new test case for pr102950.c is failing on powerpc64, as char by
    default is unsigned on this target.  This patch tweaks the new testcase
    by explicitly using "signed char" so that it's testing the intended EVRP
    behaviour portably.  Committed as obvious.
    
    2022-05-05  Roger Sayle  <roger@nextmovesoftware.com>
    
    gcc/testsuite/ChangeLog
            PR testsuite/105486
            * gcc.dg/pr102950.c: Use explicit "signed char" in test case.

Diff:
---
 gcc/testsuite/gcc.dg/pr102950.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/testsuite/gcc.dg/pr102950.c b/gcc/testsuite/gcc.dg/pr102950.c
index 0ab23bd4dbc..317568370d4 100644
--- a/gcc/testsuite/gcc.dg/pr102950.c
+++ b/gcc/testsuite/gcc.dg/pr102950.c
@@ -3,9 +3,9 @@
 
 extern void link_error(void);
 
-static char a;
+static signed char a;
 static short d(unsigned e) {
-  char b;
+  signed char b;
   short c;
   a = b = e;
   if (b)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-05 12:31 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-05 12:31 [gcc r13-136] [Committed] PR testsuite/105486: Use "signed char" in gcc.dg/pr102950.c Roger Sayle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).