aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/20040127-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.dg/20040127-1.c')
-rw-r--r--gcc/testsuite/gcc.dg/20040127-1.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc/testsuite/gcc.dg/20040127-1.c b/gcc/testsuite/gcc.dg/20040127-1.c
deleted file mode 100644
index 0ea6062a5a9..00000000000
--- a/gcc/testsuite/gcc.dg/20040127-1.c
+++ /dev/null
@@ -1,24 +0,0 @@
-/* PR target/10904 */
-/* Origin: <kminola@eng.umd.edu> */
-
-/* Verify that the register allocator correctly aligns
- floating-point registers on SPARC64. */
-
-/* { dg-do assemble } */
-/* { dg-options "-O2" } */
-
-extern int foo1();
-extern int foo2();
-
-void foo(int n, int b)
-{
- int i, a;
-
- foo1();
-
- a = (long)(b * ((double) 0.1));
-
- for (i=0; i < n; i++) {
- foo2(a);
- }
-}