Lines 8-10
Link Here
|
8 |
|
8 |
|
9 |
#if defined(__alpha__) || defined (NO_ASSEMBLY) |
9 |
#if defined(__alpha__) || defined (NO_ASSEMBLY) |
10 |
|
10 |
|
|
|
11 |
@@ -68,7 +68,7 @@ static inline void * |
12 |
"rep\n\t" |
13 |
"stosb" |
14 |
: : "a"(c), "D"(s), "c"(count) |
15 |
- : "cx", "di"); |
16 |
+ ); |
17 |
return s; |
18 |
} |
19 |
|
20 |
@@ -278,7 +278,7 @@ static inline void * |
21 |
"1:call __memcpyasm_regargs\n\t" |
22 |
"2:": |
23 |
:"S"(dest), "d"(src), "c"(n) |
24 |
- :"ax", "0", "1", "2"); |
25 |
+ :"ax"); |
26 |
return dest; |
27 |
} |
28 |
|
29 |
@@ -294,7 +294,7 @@ static inline void * |
30 |
"1:call __memcpyasm_regargs_aligned\n\t" |
31 |
"2:\n\t": |
32 |
:"S"(dest), "d"(src), "c"(n) |
33 |
- :"ax", "0", "1", "2"); |
34 |
+ :"ax"); |
35 |
return dest; |
36 |
} |
37 |
|
38 |
@@ -311,7 +311,7 @@ static inline void * |
39 |
"2:\n\t" |
40 |
: |
41 |
:"S"((long) dest), "d"((long) src), "c"((long) n) |
42 |
- :"ax", "0", "1", "2"); |
43 |
+ :"ax"); |
44 |
return dest; |
45 |
} |
46 |
|