view gcc/testsuite/gcc.dg/asm-wide-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
line wrap: on
line source

/* Wide string literals should not be allowed in asm.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */

int foo asm (L"bar"); /* { dg-error "14:wide string literal in 'asm'" } */

asm (L"foo"); /* { dg-error "6:wide string literal in 'asm'" } */

void
f (void)
{
  int x = 1;
  asm (L"foo"); /* { dg-error "8:wide string literal in 'asm'" } */
  asm ("foo" :
       L"=g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
  /* Extra errors from the substitution of "" for wide strings: */
  /* { dg-error "output" "output" { target *-*-* } .-2 } */
  asm ("foo" : [x]
       L"=g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
  /* { dg-error "output" "output" { target *-*-* } .-1 } */
  asm ("foo" : [x] "=g" (x),
       L"=g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
  /* { dg-error "output" "output" { target *-*-* } .-1 } */
  asm ("foo" : :
       L"g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
  asm ("foo" : : :
       L"memory"); /* { dg-error "8:wide string literal in 'asm'" } */
  asm ("foo" : : : "memory",
       L"memory"); /* { dg-error "8:wide string literal in 'asm'" } */
}