diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gcc.c-torture/compile/pr28489.c | |
download | cbb-gcc-4.6.4-upstream.tar.bz2 cbb-gcc-4.6.4-upstream.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/pr28489.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/pr28489.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr28489.c b/gcc/testsuite/gcc.c-torture/compile/pr28489.c new file mode 100644 index 000000000..766880fef --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr28489.c @@ -0,0 +1,48 @@ +typedef int c_int; +union c_insn +{ + void (*op) (); + c_int *mem; + c_int imm; +}; +static union c_insn c_stack[((0x100 + 4) * 4)]; +static struct c_ident *c_funcs; +static void (*c_op_bz) (); +static void c_direct (union c_insn *addr); +c_compile (int (*ext_getchar) (), void (*ext_rewind) (), + struct c_ident *externs) +{ + c_direct (((void *) 0)); +} +static void +c_direct (union c_insn *addr) +{ + union c_insn *pc = addr; + union c_insn *sp = c_stack; + c_int imm = 0; + static void *ops[] = { + &&op_index, &&op_assign, &&op_add_a, &&op_sub_a, &&op_mul_a, &&op_div_a, + &&op_mod_a, &&op_or_a, &&op_xor_a, &&op_and_a, &&op_shl_a, &&op_shr_a, + }; + { + c_op_bz = &&op_bz; + } + goto *(pc++)->op; +op_bz:if (imm) + { + } +op_push_imm_imm:(sp - 2)->imm = imm; + goto *(pc - 1)->op; +op_index:imm = *((sp - 3)->mem += imm); +op_assign:*(sp - 3)->mem = imm; +op_add_a:imm = *(sp - 3)->mem += imm; +op_sub_a:imm = *(sp - 3)->mem -= imm; +op_mul_a:imm = *(sp - 3)->mem *= imm; +op_div_a:imm = *(sp - 3)->mem /= imm; +op_mod_a:imm = *(sp - 3)->mem %= imm; +op_or_a:imm = *(sp - 3)->mem |= imm; +op_xor_a:imm = *(sp - 3)->mem ^= imm; +op_and_a:imm = *(sp - 3)->mem &= imm; +op_shl_a:imm = *(sp - 3)->mem <<= imm; +op_shr_a:imm = *(sp - 3)->mem >>= imm; +} |