pr44707.c: Do not assume assembler supports /* ...

* gcc.c-torture/compile/pr44707.c: Do not assume assembler
	supports /* ... */ comments.

From-SVN: r181489
This commit is contained in:
Ulrich Weigand 2011-11-18 18:17:05 +00:00 committed by Ulrich Weigand
parent 7bc6df2ca1
commit 4a0051e4db
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-11-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* gcc.c-torture/compile/pr44707.c: Do not assume assembler
supports /* ... */ comments.
2011-11-18 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/51150

View File

@ -9,6 +9,6 @@ foo (void)
int e3 = v.b;
int e4 = v.c;
int e5 = v.d;
__asm__ volatile ("/* %0 %1 %2 %3 %4 */" : : "nro" (e1), "nro" (e2), "nro" (e3), "nro" (e4), "nro" (e5));
__asm__ volatile ("" : : "nro" (e1), "nro" (e2), "nro" (e3), "nro" (e4), "nro" (e5));
}