OSDN Git Service

* g++.dg/cdce3.C: Skip on alpha*-dec-osf5*.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-wide-1.c
index 82cf368..c14b19d 100644 (file)
@@ -3,33 +3,30 @@
 /* { dg-do compile } */
 /* { dg-options "" } */
 
-int foo asm (L"bar"); /* { dg-error "error: wide string literal in 'asm'" } */
+int foo asm (L"bar"); /* { dg-error "14:wide string literal in 'asm'" } */
 
-asm (L"foo"); /* { dg-error "error: 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 "error: wide string literal in 'asm'" } */
+  asm (L"foo"); /* { dg-error "8:wide string literal in 'asm'" } */
   asm ("foo" :
-       L"=g" (x)); /* { dg-error "error: wide string literal in 'asm'" } */
+       L"=g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
   asm ("foo" : [x]
-       L"=g" (x)); /* { dg-error "error: wide string literal in 'asm'" } */
+       L"=g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
   asm ("foo" : [x] "=g" (x),
-       L"=g" (x)); /* { dg-error "error: wide string literal in 'asm'" } */
+       L"=g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
   asm ("foo" : :
-       L"g" (x)); /* { dg-error "error: wide string literal in 'asm'" } */
+       L"g" (x)); /* { dg-error "8:wide string literal in 'asm'" } */
   asm ("foo" : : :
-       L"memory"); /* { dg-error "error: wide string literal in 'asm'" } */
+       L"memory"); /* { dg-error "8:wide string literal in 'asm'" } */
   asm ("foo" : : : "memory",
-       L"memory"); /* { dg-error "error: wide string literal in 'asm'" } */
+       L"memory"); /* { dg-error "8:wide string literal in 'asm'" } */
 }
 
 /* Extra errors from the substitution of "" for wide strings: */
 /* { dg-error "output" "output" { target *-*-* } 16 } */
 /* { dg-error "output" "output" { target *-*-* } 18 } */
 /* { dg-error "output" "output" { target *-*-* } 20 } */
-/* { dg-warning "match" "match" { target *-*-* } 21 } */
-/* { dg-error "register" "register" { target *-*-* } 23 } */
-/* { dg-error "register" "register" { target *-*-* } 25 } */