This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Committed: Fix typo in gcc.dg/tree-ssa/loop-1.c


Without this correction, I see:
ERROR: gcc.dg/tree-ssa/loop-1.c: error executing dg-final: scan-assembler: too many arguments
People testing their changes before committing, would presumably
see it too.  Thankfully this isn't the type of typo that ruins a
whole test-run...  However, it's just as easily checked as any
other change to a single test-case.

	* gcc.dg/tree-ssa/loop-1.c: Fix missing "-" in dg-final
	scan-assembler-times directive name.

Index: loop-1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.dg/tree-ssa/loop-1.c,v
retrieving revision 1.8
diff -p -c -u -p -r1.8 loop-1.c
--- loop-1.c	19 Jan 2005 16:51:34 -0000	1.8
+++ loop-1.c	20 Jan 2005 03:34:00 -0000
@@ -29,7 +29,7 @@ void xxx(void)
    well as the calls we need to look for something more specific then just
    foo in order to count only the calls and not the declaration.  */

-/* { dg-final { scan-assembler times "foo" 5 { xfail hppa-*-* ia64-*-* } } } */
+/* { dg-final { scan-assembler-times "foo" 5 { xfail hppa-*-* ia64-*-* } } } */
 /* { dg-final { scan-assembler-times "foo,%r" 5 { target hppa*-*-* } } } */
 /* { dg-final { scan-assembler-times "= foo"  5 { target ia64*-*-* } } } */


brgds, H-P


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]