Commit c13e9788 by Christophe Lyon Committed by Christophe Lyon

[testsuite] PR71598: Fix testcases

2019-04-13  Christophe Lyon  <christophe.lyon@linaro.org>

	PR c/71598
	* gcc.dg/torture/pr71598-1.c: Skip if short_enums target.
	* gcc.dg/torture/pr71598-2.c: Skip if not short_enums target.

From-SVN: r270126
parent c51b04ec
2019-04-13 Christophe Lyon <christophe.lyon@linaro.org>
PR c/71598
* gcc.dg/torture/pr71598-1.c: Skip if short_enums target.
* gcc.dg/torture/pr71598-2.c: Skip if not short_enums target.
2019-04-03 Richard Biener <rguenther@suse.de>
PR tree-optimization/84101
......
/* { dg-do run } */
/* { dg-skip-if "" { short_enums } } */
/* { dg-additional-options "-fno-short-enums" } */
enum e1 { c1 };
......
/* { dg-do run } */
/* { dg-skip-if "" { ! short_enums } } */
/* { dg-additional-options "-fshort-enums" } */
enum e1 { c1 = -__INT_MAX__ };
......
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