Commit adccacc4 by Zdenek Dvorak Committed by Zdenek Dvorak

* gcc.dg/old-style-asm-1.c: Count jump_insns instead of labels.

From-SVN: r72698
parent 59823ba4
2003-10-20 Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
* gcc.dg/old-style-asm-1.c: Count jump_insns instead of labels.
2003-10-20 Eric Botcazou <ebotcazou@libertysurf.fr> 2003-10-20 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.dg/builtins-18.c: Wrap C99 tests with HAVE_C99_RUNTIME. * gcc.dg/builtins-18.c: Wrap C99 tests with HAVE_C99_RUNTIME.
......
/* PR inline-asm/8832 */ /* PR inline-asm/8832 */
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-O2" } */ /* { dg-options "-O2 -dP" } */
/* Verify that GCC doesn't optimize /* Verify that GCC doesn't optimize
old style asm instructions. */ old style asm instructions. */
...@@ -18,9 +18,6 @@ void foo(int v) ...@@ -18,9 +18,6 @@ void foo(int v)
/* The purpose of the test below is to check that there are two branches /* The purpose of the test below is to check that there are two branches
in the generated code, supposedly corresponding to the if-statements. in the generated code, supposedly corresponding to the if-statements.
Warning: this is fragile and assumes that the generated labels for the It tries to check for jump_insn (set (pc) pattern, so that jump_insns
branches contain letter "L". That assumption is generally invalid, corresponding to return are not taken into account. */
because for example it depends on the target macro /* { dg-final { scan-assembler-times "(?n)jump_insn.*set.*pc" 2 } } */
ASM_GENERATE_INTERNAL_LABEL to generate such a name (as with the default
definition). */
/* { dg-final { scan-assembler-times "L" 4 } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment