From 4bb5454cbdfe9f3e0c5d6ea3239de3ee1995bb2e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 11 Mar 2007 23:06:39 +0000 Subject: Patch from Al Stone to fix ia64: The attached patch works around some compilation failures on ia64 caused by the use of the C preprocessor ## operator, and allows the ia64 default configuration to build again -- or, at least get as far as an x86 build does (the current source tree has some problems compiling because of conflicting type declarations for __kernel_dev_t). --- libc/string/ia64/memmove.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/string/ia64/memmove.S') diff --git a/libc/string/ia64/memmove.S b/libc/string/ia64/memmove.S index 0328f84de..00342d8e0 100644 --- a/libc/string/ia64/memmove.S +++ b/libc/string/ia64/memmove.S @@ -64,7 +64,7 @@ #define LOOP(shift) \ ALIGN(32); \ -.loop##shift##: \ +.loop##shift : \ (p[0]) ld8 r[0] = [asrc], 8 ; /* w1 */ \ (p[MEMLAT+1]) st8 [dest] = value, 8 ; \ (p[MEMLAT]) shrp value = r[MEMLAT], r[MEMLAT+1], shift ; \ -- cgit v1.2.3