Browse Source

ARC: string: handle gcc 6.x macro changes

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@synopsys.com>
Vineet Gupta 7 years ago
parent
commit
f6cfc2129c
2 changed files with 3 additions and 3 deletions
  1. 1 1
      libc/string/arc/arcv2/memcpy.S
  2. 2 2
      libc/string/arc/arcv2/memset.S

+ 1 - 1
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]

+ 2 - 2
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]