From owner-svn-src-all@FreeBSD.ORG Sun May 31 10:51:07 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCAD336B; Sun, 31 May 2015 10:51:07 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8FFF719CC; Sun, 31 May 2015 10:51:07 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4VAp7CE060747; Sun, 31 May 2015 10:51:07 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4VAp6Kc060744; Sun, 31 May 2015 10:51:06 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201505311051.t4VAp6Kc060744@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Sun, 31 May 2015 10:51:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r283812 - head/sys/arm/include X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 May 2015 10:51:07 -0000 Author: andrew Date: Sun May 31 10:51:06 2015 New Revision: 283812 URL: https://svnweb.freebsd.org/changeset/base/283812 Log: We only support the ARM EABI in head, remove the check on __ARM_EABI__. Modified: head/sys/arm/include/_types.h head/sys/arm/include/asm.h head/sys/arm/include/proc.h Modified: head/sys/arm/include/_types.h ============================================================================== --- head/sys/arm/include/_types.h Sun May 31 10:18:10 2015 (r283811) +++ head/sys/arm/include/_types.h Sun May 31 10:51:06 2015 (r283812) @@ -105,15 +105,9 @@ typedef __uint32_t __vm_paddr_t; typedef __uint64_t __vm_pindex_t; typedef __uint32_t __vm_size_t; -#ifdef __ARM_EABI__ typedef unsigned int ___wchar_t; #define __WCHAR_MIN 0 /* min value for a wchar_t */ #define __WCHAR_MAX __UINT_MAX /* max value for a wchar_t */ -#else -typedef int ___wchar_t; -#define __WCHAR_MIN __INT_MIN /* min value for a wchar_t */ -#define __WCHAR_MAX __INT_MAX /* max value for a wchar_t */ -#endif /* * Unusual type definitions. Modified: head/sys/arm/include/asm.h ============================================================================== --- head/sys/arm/include/asm.h Sun May 31 10:18:10 2015 (r283811) +++ head/sys/arm/include/asm.h Sun May 31 10:51:06 2015 (r283812) @@ -49,7 +49,7 @@ # define _ALIGN_TEXT .align 2 #endif -#if defined(__ARM_EABI__) && !defined(_STANDALONE) +#ifndef _STANDALONE #define STOP_UNWINDING .cantunwind #define _FNSTART .fnstart #define _FNEND .fnend Modified: head/sys/arm/include/proc.h ============================================================================== --- head/sys/arm/include/proc.h Sun May 31 10:18:10 2015 (r283811) +++ head/sys/arm/include/proc.h Sun May 31 10:51:06 2015 (r283812) @@ -61,11 +61,7 @@ struct mdproc { void *md_sigtramp; }; -#ifdef __ARM_EABI__ #define KINFO_PROC_SIZE 816 -#else -#define KINFO_PROC_SIZE 792 -#endif #define MAXARGS 8 /*