Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=57e6f9646ccf52d14c57bf4886fc0edb5a47d82b
Commit:     57e6f9646ccf52d14c57bf4886fc0edb5a47d82b
Parent:     12e1b1e7909484cfa538159adf87227ad23d8d94
Author:     Jesper Nilsson <[EMAIL PROTECTED]>
AuthorDate: Mon Jan 28 18:11:29 2008 +0100
Committer:  Jesper Nilsson <[EMAIL PROTECTED]>
CommitDate: Fri Feb 8 11:06:39 2008 +0100

    CRIS v32: Let compiler know that memory is clobbered after a break op.
---
 include/asm-cris/arch-v32/unistd.h |   21 ++++++++++++++-------
 1 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/include/asm-cris/arch-v32/unistd.h 
b/include/asm-cris/arch-v32/unistd.h
index 5d369d4..0051114 100644
--- a/include/asm-cris/arch-v32/unistd.h
+++ b/include/asm-cris/arch-v32/unistd.h
@@ -16,7 +16,8 @@ type name(void) \
                        ".endif\n\t" \
                        "break 13" \
                        : "=r" (__a) \
-                       : "r" (__n_)); \
+                       : "r" (__n_) \
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
@@ -33,7 +34,8 @@ type name(type1 arg1) \
                        ".endif\n\t" \
                        "break 13" \
                        : "=r" (__a) \
-                       : "r" (__n_), "0" (__a)); \
+                       : "r" (__n_), "0" (__a) \
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
@@ -51,7 +53,8 @@ type name(type1 arg1,type2 arg2) \
                        ".endif\n\t" \
                        "break 13" \
                        : "=r" (__a) \
-                       : "r" (__n_), "0" (__a), "r" (__b)); \
+                       : "r" (__n_), "0" (__a), "r" (__b) \
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
@@ -70,7 +73,8 @@ type name(type1 arg1,type2 arg2,type3 arg3) \
                        ".endif\n\t" \
                        "break 13" \
                        : "=r" (__a) \
-                       : "r" (__n_), "0" (__a), "r" (__b), "r" (__c)); \
+                       : "r" (__n_), "0" (__a), "r" (__b), "r" (__c) \
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
@@ -91,7 +95,8 @@ type name (type1 arg1, type2 arg2, type3 arg3, type4 arg4) \
                        "break 13" \
                        : "=r" (__a) \
                        : "r" (__n_), "0" (__a), "r" (__b), \
-                         "r" (__c), "r" (__d)); \
+                         "r" (__c), "r" (__d)\
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
@@ -114,7 +119,8 @@ type name (type1 arg1,type2 arg2,type3 arg3,type4 
arg4,type5 arg5) \
                        "break 13" \
                        : "=r" (__a) \
                        : "r" (__n_), "0" (__a), "r" (__b), \
-                         "r" (__c), "r" (__d), "h" (__e)); \
+                         "r" (__c), "r" (__d), "h" (__e) \
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
@@ -138,7 +144,8 @@ type name (type1 arg1,type2 arg2,type3 arg3,type4 
arg4,type5 arg5,type6 arg6) \
                        "break 13" \
                        : "=r" (__a) \
                        : "r" (__n_), "0" (__a), "r" (__b), \
-                         "r" (__c), "r" (__d), "h" (__e), "x" (__f)); \
+                         "r" (__c), "r" (__d), "h" (__e), "x" (__f) \
+                       : "memory"); \
   if (__a >= 0) \
      return (type) __a; \
   errno = -__a; \
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to