From dd3e6bfbf9bda711367047e4224695d5464fcfb4 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 6 Nov 2008 21:31:30 -0800 Subject: [PATCH] Don't make interrupt stubs global symbols. The stubs are only referenced within intr-stubs.S so there is no reason for them to be exported. Found with Godmar's process-linker-map.pl. --- src/threads/intr-stubs.S | 1 - 1 file changed, 1 deletion(-) diff --git a/src/threads/intr-stubs.S b/src/threads/intr-stubs.S index 334d8cc..adb674e 100644 --- a/src/threads/intr-stubs.S +++ b/src/threads/intr-stubs.S @@ -111,7 +111,6 @@ intr_stubs: or `REAL', if the CPU pushes an error code for us. */ #define STUB(NUMBER, TYPE) \ .text; \ -.globl intr##NUMBER##_stub; \ .func intr##NUMBER##_stub; \ intr##NUMBER##_stub: \ TYPE; \ -- 2.30.2