We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d1534 commit ee97fefCopy full SHA for ee97fef
src/lexer.c
@@ -150,11 +150,6 @@ bool is_whitespace(char c)
150
151
char peek_char(int offset);
152
153
-/* is it backslash-newline? */
154
-bool is_linebreak(char c)
155
-{
156
- return c == '\\' && peek_char(1) == '\n';
157
-}
158
159
bool is_newline(char c)
160
{
src/riscv.c
@@ -377,15 +377,6 @@ int __ecall(void)
377
return rv_encode_I(rv_ecall, __zero, __zero, 0);
378
}
379
380
-int __ebreak(void)
381
382
- return rv_encode_I(rv_ebreak, __zero, __zero, 1);
383
384
-
385
-int __nop(void)
386
387
- return __addi(__zero, __zero, 0);
388
389
390
int __mul(rv_reg rd, rv_reg rs1, rv_reg rs2)
391
0 commit comments