Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 359141
b: refs/heads/master
c: c5a285b
h: refs/heads/master
i:
  359139: 5b0cccb
v: v3
  • Loading branch information
Max Filippov authored and Chris Zankel committed Feb 24, 2013
1 parent 4ba7c16 commit 7a1494c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: de73b6b1bd7480301c8e8fbe58184448b1757945
refs/heads/master: c5a285bb1b54e8b636cb522a9eb9c9ad232a23f8
4 changes: 2 additions & 2 deletions trunk/arch/xtensa/include/asm/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static inline int strcmp(const char *__cs, const char *__ct)
"beqz %2, 2f\n\t"
"beq %2, %3, 1b\n"
"2:\n\t"
"sub %2, %3, %2"
"sub %2, %2, %3"
: "=r" (__cs), "=r" (__ct), "=&r" (__res), "=&r" (__dummy)
: "0" (__cs), "1" (__ct));

Expand All @@ -99,7 +99,7 @@ static inline int strncmp(const char *__cs, const char *__ct, size_t __n)
"beqz %3, 2f\n\t"
"beq %2, %3, 1b\n"
"2:\n\t"
"sub %2, %3, %2"
"sub %2, %2, %3"
: "=r" (__cs), "=r" (__ct), "=&r" (__res), "=&r" (__dummy)
: "0" (__cs), "1" (__ct), "r" (__cs+__n));

Expand Down

0 comments on commit 7a1494c

Please sign in to comment.