From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YB6GD-00064y-VA for qemu-devel@nongnu.org; Tue, 13 Jan 2015 13:32:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YB6GC-0002PR-1N for qemu-devel@nongnu.org; Tue, 13 Jan 2015 13:32:13 -0500 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:54822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YB6GB-0002MM-Rp for qemu-devel@nongnu.org; Tue, 13 Jan 2015 13:32:11 -0500 From: Peter Maydell Date: Tue, 13 Jan 2015 18:32:00 +0000 Message-Id: <1421173921-28848-2-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1421173921-28848-1-git-send-email-peter.maydell@linaro.org> References: <1421173921-28848-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH 1/2] cpu_ldst.h: Remove unused ldul_ macros List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , Richard Henderson , patches@linaro.org The five ldul_ macros are not used anywhere and are marked up with an XXX comment. "ldul" is a non-standard prefix for our family of load instructions: we don't mark 32-bit accesses for signedness because they return a 32 bit quantity. So just delete them. Signed-off-by: Peter Maydell --- include/exec/cpu_ldst.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/exec/cpu_ldst.h b/include/exec/cpu_ldst.h index e5550e7..4700831 100644 --- a/include/exec/cpu_ldst.h +++ b/include/exec/cpu_ldst.h @@ -151,15 +151,6 @@ #else -/* XXX: find something cleaner. - * Furthermore, this is false for 64 bits targets - */ -#define ldul_user ldl_user -#define ldul_kernel ldl_kernel -#define ldul_hypv ldl_hypv -#define ldul_executive ldl_executive -#define ldul_supervisor ldl_supervisor - /* The memory helpers for tcg-generated code need tcg_target_long etc. */ #include "tcg.h" -- 1.9.1