Commit 30e87461 by Martin Liska Committed by Martin Liska

Use signed char in a test (PR testsuite/87739).

2018-10-25  Martin Liska  <mliska@suse.cz>

	PR testsuite/87739
	* gcc.dg/tree-ssa/pr84436-5.c (foo): Use signed char.

From-SVN: r265495
parent 3239d726
2018-10-25 Martin Liska <mliska@suse.cz> 2018-10-25 Martin Liska <mliska@suse.cz>
PR testsuite/87739
* gcc.dg/tree-ssa/pr84436-5.c (foo): Use signed char.
2018-10-25 Martin Liska <mliska@suse.cz>
PR other/87735 PR other/87735
* gcc.dg/tree-prof/time-profiler-1.c: Revert. * gcc.dg/tree-prof/time-profiler-1.c: Revert.
* gcc.dg/tree-prof/time-profiler-2.c: Likewise. * gcc.dg/tree-prof/time-profiler-2.c: Likewise.
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
/* { dg-options "-O2 -fdump-tree-switchconv -fdump-tree-optimized" } */ /* { dg-options "-O2 -fdump-tree-switchconv -fdump-tree-optimized" } */
/* { dg-do run } */ /* { dg-do run } */
char signed char
__attribute__ ((noipa)) __attribute__ ((noipa))
foo (char how) foo (signed char how)
{ {
switch (how) { switch (how) {
case -4: how = 96; break; case -4: how = 96; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment