cpu-x86: Properly ignore unused parameters.
parent
32795ecf03
commit
ef0f56e4b7
|
@ -3,7 +3,10 @@ namespace factor {
|
||||||
#define CALLSTACK_BOTTOM(ctx) \
|
#define CALLSTACK_BOTTOM(ctx) \
|
||||||
(ctx->callstack_seg->end - sizeof(cell) * 5)
|
(ctx->callstack_seg->end - sizeof(cell) * 5)
|
||||||
|
|
||||||
inline static void flush_icache(cell start, cell len) {}
|
inline static void flush_icache(cell start, cell len) {
|
||||||
|
(void)start;
|
||||||
|
(void)len;
|
||||||
|
}
|
||||||
|
|
||||||
// In the instruction sequence:
|
// In the instruction sequence:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue