* [PATCH] ARC: string: handle gcc 6.x macro changes
@ 2016-11-10  0:03 Vineet Gupta
  2016-11-16 19:13 ` [uclibc-ng-devel] " Waldemar Brodkorb
  0 siblings, 1 reply; 2+ messages in thread
From: Vineet Gupta @ 2016-11-10  0:03 UTC (permalink / raw)
  To: linux-snps-arc
In gcc 6.x cleanup, the macros got renamed.
(Need to support the old toggle for some more time)
Signed-off-by: Vineet Gupta <vgupta at synopsys.com>
---
 libc/string/arc/arcv2/memcpy.S | 2 +-
 libc/string/arc/arcv2/memset.S | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libc/string/arc/arcv2/memcpy.S b/libc/string/arc/arcv2/memcpy.S
index 7573daf51acb..ba29e8790721 100644
--- a/libc/string/arc/arcv2/memcpy.S
+++ b/libc/string/arc/arcv2/memcpy.S
@@ -23,7 +23,7 @@
 # define EXTRACT_2(RX,RY,IMM)	lsr	RX, RY, 0x08
 #endif
 
-#ifdef __LL64__
+#if defined(__LL64__) || defined(__ARC_LL64__)
 # define PREFETCH_READ(RX)	prefetch [RX, 56]
 # define PREFETCH_WRITE(RX)	prefetchw [RX, 64]
 # define LOADX(DST,RX)		ldd.ab	DST, [RX, 8]
diff --git a/libc/string/arc/arcv2/memset.S b/libc/string/arc/arcv2/memset.S
index 0918d377462c..343cfaf81c6d 100644
--- a/libc/string/arc/arcv2/memset.S
+++ b/libc/string/arc/arcv2/memset.S
@@ -52,7 +52,7 @@ ENTRY(memset)
 	lpnz	@.Lset64bytes
 	;; LOOP START
 	PREWRITE(r3, 64)	;Prefetch the next write location
-#ifdef __LL64__
+#if defined(__LL64__) || defined(__ARC_LL64__)
 	std.ab	r4, [r3, 8]
 	std.ab	r4, [r3, 8]
 	std.ab	r4, [r3, 8]
@@ -85,7 +85,7 @@ ENTRY(memset)
 	lpnz	.Lset32bytes
 	;; LOOP START
 	prefetchw [r3, 32]	;Prefetch the next write location
-#ifdef __LL64__
+#if defined(__LL64__) || defined(__ARC_LL64__)
 	std.ab	r4, [r3, 8]
 	std.ab	r4, [r3, 8]
 	std.ab	r4, [r3, 8]
-- 
2.7.4
^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [uclibc-ng-devel] [PATCH] ARC: string: handle gcc 6.x macro changes
  2016-11-10  0:03 [PATCH] ARC: string: handle gcc 6.x macro changes Vineet Gupta
@ 2016-11-16 19:13 ` Waldemar Brodkorb
  0 siblings, 0 replies; 2+ messages in thread
From: Waldemar Brodkorb @ 2016-11-16 19:13 UTC (permalink / raw)
  To: linux-snps-arc
Hi Vineet,
Vineet Gupta wrote,
> In gcc 6.x cleanup, the macros got renamed.
> (Need to support the old toggle for some more time)
Applied and pushed,
 thx
   Waldemar
^ permalink raw reply	[flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-11-16 19:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-10  0:03 [PATCH] ARC: string: handle gcc 6.x macro changes Vineet Gupta
2016-11-16 19:13 ` [uclibc-ng-devel] " Waldemar Brodkorb
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 NNTP newsgroup(s).