view gcc/testsuite/gcc.dg/pr77521.c @ 157:dafe684d005c

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:08:54 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR c/77521 - %qc format directive should quote non-printable characters.
   Verify that non-printable characters in assembly constraints are quoted
   and not allowed to be printed raw.  */

void f (int a, int b)
{
  __asm__ ("combine %2, %0" : "=r" (a) : "0" (a), "\n" (b));   /* { dg-error "invalid punctuation .\\\\x0a. in constraint" } */
}