view gcc/testsuite/gcc.dg/pr90082.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

/* PR rtl-optimization/90082 */
/* { dg-do compile } */
/* { dg-require-effective-target nonlocal_goto } */
/* { dg-require-effective-target label_values } */
/* { dg-options "-O1 -fnon-call-exceptions -ftrapv" } */

void *buf[5];

void
foo (int a)
{
  if (__builtin_setjmp (buf) == 0)
    __asm__ ("" : : "n" (a * 2));	/* { dg-error "impossible constraint in 'asm'" } */
					/* { dg-warning "'asm' operand 0 probably does not match constraints" "" { target *-*-* } .-1 } */
}