* gcc.c-torture/compile/20000827-1.c: New test.

From-SVN: r36109
This commit is contained in:
Alexandre Oliva 2000-09-02 02:44:45 +00:00 committed by Alexandre Oliva
parent 1b4f90cdce
commit 298ec8f42f
2 changed files with 21 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2000-09-01 Alexandre Oliva <aoliva@redhat.com>
* gcc.c-torture/compile/20000827-1.c: New test.
2000-09-01 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.dg/format-diag-1.c: New test.

View file

@ -0,0 +1,17 @@
/* Copyright (C) 2000 Free Software Foundation */
/* Contributed by Alexandre Oliva <aoliva@redhat.com> */
int
foo ()
{
while (1)
{
int a;
char b;
/* gcse should not merge these asm statements, since their
output operands have different modes. */
__asm__("":"=r" (a)); __asm__("":"=r" (b));
if (b)
return a;
}
}