This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix PR81573 testcase


Tested on x86_64-unknown-linux-gnu, applied.

Richard.

2017-07-28  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/81573
	* gcc.dg/torture/pr81573.c: Explicitely use signed char.

Index: gcc/testsuite/gcc.dg/torture/pr81573.c
===================================================================
--- gcc/testsuite/gcc.dg/torture/pr81573.c	(revision 250649)
+++ gcc/testsuite/gcc.dg/torture/pr81573.c	(working copy)
@@ -1,7 +1,7 @@
 /* { dg-do run } */
 
 int a = 1, *c = &a, d;
-char b;
+signed char b;
 
 int main ()
 {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]