diff options
author | Mike Pall <mike> | 2011-10-27 01:52:37 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2011-10-27 01:57:30 +0200 |
commit | 2dc574d06bc6e828109a3bffa975592f9417434c (patch) | |
tree | 1239baece908e2390eb378e6d7d8063825926f9b /src/lj_target_ppc.h | |
parent | 1d190c99a2547b44deb8f5e483452d9f51925fb2 (diff) | |
download | luajit-2dc574d06bc6e828109a3bffa975592f9417434c.tar.gz luajit-2dc574d06bc6e828109a3bffa975592f9417434c.tar.bz2 luajit-2dc574d06bc6e828109a3bffa975592f9417434c.zip |
FFI: Compile calls to stdcall, fastcall and vararg functions.
Diffstat (limited to 'src/lj_target_ppc.h')
-rw-r--r-- | src/lj_target_ppc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_target_ppc.h b/src/lj_target_ppc.h index 8abc38fd..f754a8d3 100644 --- a/src/lj_target_ppc.h +++ b/src/lj_target_ppc.h | |||
@@ -207,7 +207,9 @@ typedef enum PPCIns { | |||
207 | PPCI_BCTRL = 0x4e800421, | 207 | PPCI_BCTRL = 0x4e800421, |
208 | 208 | ||
209 | PPCI_CRANDC = 0x4c000102, | 209 | PPCI_CRANDC = 0x4c000102, |
210 | PPCI_CRXOR = 0x4c000182, | ||
210 | PPCI_CRAND = 0x4c000202, | 211 | PPCI_CRAND = 0x4c000202, |
212 | PPCI_CREQV = 0x4c000242, | ||
211 | PPCI_CRORC = 0x4c000342, | 213 | PPCI_CRORC = 0x4c000342, |
212 | PPCI_CROR = 0x4c000382, | 214 | PPCI_CROR = 0x4c000382, |
213 | 215 | ||