mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-03 05:10:26 +08:00
* gcc.c-torture/compile/20000827-1.c: New test.
From-SVN: r36109
This commit is contained in:
parent
1b4f90cdce
commit
298ec8f42f
@ -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…
x
Reference in New Issue
Block a user