summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/asm-wide-1.c
blob: 5ddc4c7d9cfd4ea0eac3fb1fa2344db4b19e1ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* 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:a wide string is invalid in this context" } */

asm (L"foo"); /* { dg-error "6:a wide string is invalid in this context" } */

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