Bug #1285 » insns.patch
| insns.def (working copy) | ||
|---|---|---|
|
()
|
||
|
(VALUE val)
|
||
|
{
|
||
|
int i;
|
||
|
unsigned long i;
|
||
|
VALUE *dfp2 = GET_DFP();
|
||
|
for (i = 0; i < level; i++) {
|
||
|
dfp2 = GET_PREV_DFP(dfp2);
|
||
| ... | ... | |
|
(VALUE val)
|
||
|
()
|
||
|
{
|
||
|
int i;
|
||
|
unsigned long i;
|
||
|
VALUE *dfp2 = GET_DFP();
|
||
|
for (i = 0; i < level; i++) {
|
||
|
dfp2 = GET_PREV_DFP(dfp2);
|
||
| ... | ... | |
|
(VALUE val) // inc += 1 - cnt;
|
||
|
{
|
||
|
VALUE rb_reg_new_ary(VALUE ary, int options);
|
||
|
int i;
|
||
|
unsigned long i;
|
||
|
const VALUE ary = rb_ary_tmp_new(cnt);
|
||
|
for (i = 0; i < cnt; i++) {
|
||
|
rb_ary_store(ary, cnt-i-1, TOPN(i));
|
||
| ... | ... | |
|
(...)
|
||
|
(...) // inc += n;
|
||
|
{
|
||
|
int i;
|
||
|
unsigned long i;
|
||
|
VALUE *sp = STACK_ADDR_FROM_TOP(n);
|
||
|
for (i = 0; i < n; i++) {
|
||
|
GET_SP()[i] = sp[i];
|
||
- « Previous
- 1
- 2
- Next »