public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] arm: Fix addressing in optpld macro
@ 2017-01-26 15:30 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2017-01-26 15:30 UTC (permalink / raw)
  To: newlib-cvs

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

commit 52a6da816f72e50aa79f0b941a003b94510fb1ad
Author: Kyrill Tkachov <kyrylo.tkachov@foss.arm.com>
Date:   Thu Jan 26 10:26:10 2017 +0000

    arm: Fix addressing in optpld macro
    
    In patch b219285f873cc79361355938bd2a994957b4a6ef you have a syntax
    error in the PLD instruction.  The syntax for the pld argument should be
    in square brackets as it's a memory address like so: pld [r1].  With
    your patch the newlib build fails for armv7-a targets.  This patch fixes
    the build failures.
    
    Tested by making sure the newlib build completes successfully.
    
    2016-01-26  Kyrylo Tkachov  <kyrylo.tkachov@arm.com>
    
        * libc/machine/arm/strcpy.c (strcpy): Fix PLD assembly syntax.
        * libc/machine/arm/strlen-stub.c (strlen): Likewise.

Diff:
---
 newlib/libc/machine/arm/strcpy.c      | 4 ++--
 newlib/libc/machine/arm/strlen-stub.c | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/newlib/libc/machine/arm/strcpy.c b/newlib/libc/machine/arm/strcpy.c
index 6f358e4..f1205b9 100644
--- a/newlib/libc/machine/arm/strcpy.c
+++ b/newlib/libc/machine/arm/strcpy.c
@@ -45,7 +45,7 @@ strcpy (char* dst, const char* src)
 #if !(defined(__OPTIMIZE_SIZE__) || defined (PREFER_SIZE_OVER_SPEED) || \
       (defined (__thumb__) && !defined (__thumb2__)))
 #ifdef _ISA_ARM_7
-       "pld	r1\n\t"
+       "pld	[r1]\n\t"
 #endif
        "eor	r2, r0, r1\n\t"
        "mov	ip, r0\n\t"
@@ -78,7 +78,7 @@ strcpy (char* dst, const char* src)
        ".p2align 2\n"
   "2:\n\t"
 #ifdef _ISA_ARM_7
-       "pld	r1, #8\n\t"
+       "pld	[r1, #8]\n\t"
 #endif
        "ldr	r4, [r1], #4\n\t"
        "sub	r2, r3, "magic1(r5)"\n\t"
diff --git a/newlib/libc/machine/arm/strlen-stub.c b/newlib/libc/machine/arm/strlen-stub.c
index 8f87cba..fc2daf1 100644
--- a/newlib/libc/machine/arm/strlen-stub.c
+++ b/newlib/libc/machine/arm/strlen-stub.c
@@ -59,7 +59,7 @@ strlen (const char* str)
        "addr .req r1\n\t"
 
 #ifdef _ISA_ARM_7
-       "pld r0\n\t"
+       "pld [r0]\n\t"
 #endif
        /* Word-align address */
        "bic	addr, r0, #3\n\t"
@@ -116,7 +116,7 @@ strlen (const char* str)
        /* and 4 more bytes  */
        "addeq	len, len, #4\n\t"
 	/* Unroll the loop a bit.  */
-       "pld	addr, #8\n\t"
+       "pld	[addr, #8]\n\t"
        /*  test (data - 0x01010101)  */
        "ittt	eq\n\t"
        "subeq	r2, data, ip\n\t"


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-01-26 15:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-26 15:30 [newlib-cygwin] arm: Fix addressing in optpld macro Corinna Vinschen

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).