From e1bcc902c069fddf83521595a3b0598b423f25e2 Mon Sep 17 00:00:00 2001
From: Rahix <rahix@rahix.de>
Date: Sat, 16 Jan 2021 12:27:57 +0100
Subject: [PATCH] feat(l0dables): Use weak references for unused handlers

Instead of actually defining each unused handler as an individual
"function" with an infinite loop, make them all reference the default
handler.  This shaves 192 bytes of unnecessary bloat off the .text
section.
---
 l0dables/lib/crt.s | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/l0dables/lib/crt.s b/l0dables/lib/crt.s
index 6be025ad2..0783132d1 100644
--- a/l0dables/lib/crt.s
+++ b/l0dables/lib/crt.s
@@ -181,8 +181,7 @@ DefaultHandler:
 		b .
 
 		.macro    def_irq_handler    handler_name
-		.weak \handler_name
-		\handler_name : b .
+		.weakref \handler_name, DefaultHandler
 		.endm
 
 		/*
-- 
GitLab