re PR middle-end/18164 (ICE on trivial invalid asm)

PR middle-end/18164
	* gcc.dg/pr18164.c: Add dg-options "".  Correct typo in dg-error.

From-SVN: r91468
This commit is contained in:
Hans-Peter Nilsson 2004-11-29 13:27:10 +00:00 committed by Hans-Peter Nilsson
parent d1a7222cce
commit 22bbc492b2
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-11-29 Hans-Peter Nilsson <hp@bitrange.com>
PR middle-end/18164
* gcc.dg/pr18164.c: Add dg-options "". Correct typo in dg-error.
2004-11-29 Joseph S. Myers <joseph@codesourcery.com>
* gcc.dg/Wnested-externs-1.c, gcc.dg/decl-7.c, gcc.dg/decl-8.c,

View File

@ -1,7 +1,8 @@
/* { dg-do compile } */
/* { dg-options "" } */
void
f (void)
{
int x;
asm ("" : "" (x)); /* {dg-error "output operand constraint lacks" } */
asm ("" : "" (x)); /* { dg-error "output operand constraint lacks" } */
}