From 475f00372b235062ce53169bcd01101805ca5f33 Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Sun, 26 Oct 2014 23:33:08 +0100 Subject: [PATCH] ARM: remove annoying #warning Although done with the best intentions, the usage of #warning in the ARM build makes it hard to see what's going on, or see any "real" warnings. Remove at least this particularly often triggered one, so we can have a relatively "quiet" build again... --- headers/os/arch/arm/arch_debugger.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/headers/os/arch/arm/arch_debugger.h b/headers/os/arch/arm/arch_debugger.h index 997b780f04..e145fb7b09 100644 --- a/headers/os/arch/arm/arch_debugger.h +++ b/headers/os/arch/arm/arch_debugger.h @@ -23,9 +23,7 @@ struct arm_debug_cpu_state { ulong r14; /* link register */ ulong r15; /* program counter */ ulong cpsr; -#if __ARM__ -#warning ARM: missing members! -#endif + // TODO missing members! uint32 dummy; } __attribute__((aligned(8)));