Commit 9b7a5864 by Kai Tietz Committed by Kai Tietz

* gcc.target/i386/indjmp-1.c: New test.

From-SVN: r211918
parent 76da3a15
2014-06-23 Kai Tietz <ktietz@redhat.com>
* gcc.target/i386/indjmp-1.c: New test.
2014-06-23 Andrew Pinski <apinski@cavium.com>
* gcc.c-torture/compile/20140723-1.c: New testcase.
......
/* { dg-do compile { target ia32 } } */
/* { dg-options "-O2" } */
#define ADVANCE_AND_DISPATCH() goto *addresses[*pc++]
void
Interpret(const unsigned char *pc)
{
static const void *const addresses[] = {
&&l0, &&l1, &&l2
};
l0:
ADVANCE_AND_DISPATCH();
l1:
ADVANCE_AND_DISPATCH();
l2:
return;
}
/* { dg-final { scan-assembler-not "jmp\[ \t\]*.%eax" } } */
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