~ubuntu-branches/ubuntu/intrepid/ruby1.9/intrepid-updates

« back to all changes in this revision

Viewing changes to template/insns_info.inc.tmpl

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-09-04 16:01:17 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070904160117-i15zckg2nhxe9fyw
Tags: 1.9.0+20070830-2ubuntu1
* Sync from Debian; remaining changes:
  - Add -g to CFLAGS.
* Fixes build failure on ia64.
* Fixes build failure with gcc-4.2 on lpia.
* Robustify check for target_os, fixing build failure on lpia.
* Set Ubuntu maintainer address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
<%= operands_num_info %>
24
24
};
25
25
 
 
26
#ifdef USE_INSN_RET_NUM
26
27
static int insn_stack_push_num_info[] = {
27
28
<%= stack_num_info %>
28
29
};
 
30
#endif
29
31
 
 
32
#ifdef USE_INSN_STACK_INCREASE
30
33
static int
31
34
insn_stack_increase(int depth, int insn, VALUE *opes)
32
35
{
37
40
  }
38
41
  return 0;
39
42
}
 
43
#endif
40
44
 
41
45
/* some utilities */
42
46
 
70
74
  }
71
75
}
72
76
 
 
77
#ifdef USE_INSN_RET_NUM
73
78
static int
74
79
insn_ret_num(int insn)
75
80
{
76
81
  return insn_stack_push_num_info[insn];
77
82
}
 
83
#endif