From 29ee7b16fe9113fc6644ae48d4b94f1ee02fedfd Mon Sep 17 00:00:00 2001 From: Zdenek Dvorak Date: Sun, 19 Oct 2003 20:43:12 +0200 Subject: [PATCH] * gcc.dg/old-style-asm-1.c: Use scan-assembler-times. From-SVN: r72682 --- gcc/testsuite/ChangeLog | 4 ++++ gcc/testsuite/gcc.dg/old-style-asm-1.c | 11 +++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 41e3d856912..91565dca721 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-10-19 Zdenek Dvorak + + * gcc.dg/old-style-asm-1.c: Use scan-assembler-times. + 2003-10-18 Kriang Lerdsuwanakij PR c++/12495 diff --git a/gcc/testsuite/gcc.dg/old-style-asm-1.c b/gcc/testsuite/gcc.dg/old-style-asm-1.c index c33707e609c..6082a24488e 100644 --- a/gcc/testsuite/gcc.dg/old-style-asm-1.c +++ b/gcc/testsuite/gcc.dg/old-style-asm-1.c @@ -18,10 +18,9 @@ void foo(int v) /* The purpose of the test below is to check that there are two branches in the generated code, supposedly corresponding to the if-statements. - Warning: this is fragile and assumes that one of the generated labels - for the branches matches the string "L2", or as with - mmix-knuth-mmixware, "L:2". That assumption is generally invalid, + Warning: this is fragile and assumes that the generated labels for the + branches contain letter "L". That assumption is generally invalid, because for example it depends on the target macro - ASM_GENERATE_INTERNAL_LABEL to generate a name matching this regexp (as - with the default definition). */ -/* { dg-final { scan-assembler "L(:|\\\$0*)?2" } } */ + ASM_GENERATE_INTERNAL_LABEL to generate such a name (as with the default + definition). */ +/* { dg-final { scan-assembler-times "L" 4 } } */ -- 2.30.2