From e8741fe95461da8836ff3d8af258bed80dcd13b6 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Mon, 4 Sep 2017 17:37:31 +0200 Subject: Move ADDR32() hack to arch/x86 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's arch specific, so no need to pollute non-x86 with it. Change-Id: I99ec76d591789db186e8a33774565e5a04fc4e47 Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/21392 Reviewed-by: Philippe Mathieu-Daudé Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/include/compiler.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/include') diff --git a/src/include/compiler.h b/src/include/compiler.h index 268064d0c2..a830239009 100644 --- a/src/include/compiler.h +++ b/src/include/compiler.h @@ -26,10 +26,4 @@ #define __always_unused __attribute__((unused)) #define __must_check __attribute__((warn_unused_result)) -#if IS_ENABLED(CONFIG_COMPILER_LLVM_CLANG) -#define ADDR32(opcode) opcode -#else -#define ADDR32(opcode) addr32 opcode -#endif - #endif -- cgit v1.2.3