* gcc.c-torture/compile/20000827-1.c: New test.
From-SVN: r36109
This commit is contained in:
parent
1b4f90cdce
commit
298ec8f42f
2 changed files with 21 additions and 0 deletions
|
@ -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.
|
||||
|
|
17
gcc/testsuite/gcc.c-torture/compile/20000827-1.c
Normal file
17
gcc/testsuite/gcc.c-torture/compile/20000827-1.c
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue