summaryrefslogtreecommitdiff
path: root/src/lj_frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_frame.h')
-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