summaryrefslogtreecommitdiff
path: root/src/lj_frame.h
diff options
context:
space:
mode:
authorMike Pall <mike>2011-12-15 20:39:30 +0100
committerMike Pall <mike>2011-12-15 20:39:30 +0100
commitb330b468b3f37bd0b11765524548dbdbb1dd1a95 (patch)
tree2e836bc9c7b5c688c5ecd2b883f3894580d85f29 /src/lj_frame.h
parentb61be299c9fc00e8d2252fa3f12c6005686783d6 (diff)
downloadluajit-b330b468b3f37bd0b11765524548dbdbb1dd1a95.tar.gz
luajit-b330b468b3f37bd0b11765524548dbdbb1dd1a95.tar.bz2
luajit-b330b468b3f37bd0b11765524548dbdbb1dd1a95.zip
MIPS: Add build rules (non-functional, yet).
Diffstat (limited to '')
-rw-r--r--src/lj_frame.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lj_frame.h b/src/lj_frame.h
index 3497671b..a69917ee 100644
--- a/src/lj_frame.h
+++ b/src/lj_frame.h
@@ -117,6 +117,16 @@ enum {
117#define CFRAME_OFS_MULTRES 8 117#define CFRAME_OFS_MULTRES 8
118#define CFRAME_SIZE 184 118#define CFRAME_SIZE 184
119#define CFRAME_SHIFT_MULTRES 3 119#define CFRAME_SHIFT_MULTRES 3
120#elif LJ_TARGET_MIPS
121/* NYI: Dummy definitions for now. */
122#define CFRAME_OFS_ERRF 0
123#define CFRAME_OFS_NRES 0
124#define CFRAME_OFS_PREV 0
125#define CFRAME_OFS_L 0
126#define CFRAME_OFS_PC 0
127#define CFRAME_OFS_MULTRES 0
128#define CFRAME_SIZE 256
129#define CFRAME_SHIFT_MULTRES 3
120#else 130#else
121#error "Missing CFRAME_* definitions for this architecture" 131#error "Missing CFRAME_* definitions for this architecture"
122#endif 132#endif