~ubuntu-branches/ubuntu/precise/luajit/precise

« back to all changes in this revision

Viewing changes to src/lj_ir.c

  • Committer: Package Import Robot
  • Author(s): Enrico Tassi
  • Date: 2011-12-19 17:20:40 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20111219172040-erhq86w7woguajvb
Tags: 2.0.0~beta9+dfsg-1
* New upstream release with powerpc support
* Refreshed quilt patches
* Removed beta8_hotfix1 patch, no more needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
/* C call info for CALL* instructions. */
49
49
LJ_DATADEF const CCallInfo lj_ir_callinfo[] = {
50
 
#define IRCALLCI(name, nargs, kind, type, flags) \
51
 
  { (ASMFunction)name, \
 
50
#define IRCALLCI(cond, name, nargs, kind, type, flags) \
 
51
  { (ASMFunction)IRCALLCOND_##cond(name), \
52
52
    (nargs)|(CCI_CALL_##kind)|(IRT_##type<<CCI_OTSHIFT)|(flags) },
53
53
IRCALLDEF(IRCALLCI)
54
54
#undef IRCALLCI