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 43b1ba2 commit 8208cfeCopy full SHA for 8208cfe
main.c
@@ -285,9 +285,11 @@ static inline uint32_t gen_br(uint8_t rn) {
285
return insn;
286
}
287
288
-static inline uint32_t gen_ret(void) { return 0xd65f03c0; }
+__attribute__((unused)) static inline uint32_t gen_ret(void) {
289
+ return 0xd65f03c0;
290
+}
291
-static inline uint32_t gen_svc(uint16_t imm) {
292
+__attribute__((unused)) static inline uint32_t gen_svc(uint16_t imm) {
293
return 0xd4000001 | ((uint32_t)imm << 5);
294
295
0 commit comments