From: Zdenek Dvorak Date: Sun, 19 Oct 2003 18:43:12 +0000 (+0200) Subject: * gcc.dg/old-style-asm-1.c: Use scan-assembler-times. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=29ee7b16fe9113fc6644ae48d4b94f1ee02fedfd;p=platform%2Fupstream%2Fgcc.git * gcc.dg/old-style-asm-1.c: Use scan-assembler-times. From-SVN: r72682 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 41e3d85..91565dc 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 c33707e..6082a24 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 } } */