public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
From: Christophe Lyon <clyon@sourceware.org>
To: newlib-cvs@sourceware.org
Subject: [newlib-cygwin] Include code in trap.S for APCS only.
Date: Thu, 11 Apr 2019 14:20:00 -0000	[thread overview]
Message-ID: <20190411142051.97546.qmail@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=cc430406ac09d99570b5218668f2bb00371ae983

commit cc430406ac09d99570b5218668f2bb00371ae983
Author: Christophe Lyon <christophe.lyon@linaro.org>
Date:   Wed Apr 10 15:04:13 2019 +0000

    Include code in trap.S for APCS only.
    
    The code in trap.S is to support the old APCS chunked stack variant,
    which dates back to the Acorn days, so put it under #ifndef
    __ARM_EABI__.
    
    	* libgloss/arm/trap.S: Use __ARM_EABI rather than PREFER_THUMB.
    	* newlib/libc/sys/arm/trap.S: Use __ARM_EABI rather than
    	__thumb2__.

Diff:
---
 libgloss/arm/trap.S        | 2 +-
 newlib/libc/sys/arm/trap.S | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libgloss/arm/trap.S b/libgloss/arm/trap.S
index d854b57..845ad01 100644
--- a/libgloss/arm/trap.S
+++ b/libgloss/arm/trap.S
@@ -1,6 +1,6 @@
 #include "arm.h"
         /* Run-time exception support */
-#ifndef PREFER_THUMB
+#ifndef __ARM_EABI__
 #include "swi.h"
 
 /* .text is used instead of .section .text so it works with arm-aout too.  */
diff --git a/newlib/libc/sys/arm/trap.S b/newlib/libc/sys/arm/trap.S
index 21b6937..681b3db 100644
--- a/newlib/libc/sys/arm/trap.S
+++ b/newlib/libc/sys/arm/trap.S
@@ -1,5 +1,5 @@
         /* Run-time exception support */
-#if !defined(__thumb2__)
+#ifndef __ARM_EABI__
 #include "swi.h"
 
 /* .text is used instead of .section .text so it works with arm-aout too.  */


                 reply	other threads:[~2019-04-11 14:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190411142051.97546.qmail@sourceware.org \
    --to=clyon@sourceware.org \
    --cc=newlib-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).