Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
3e6cb2d3
Commit
3e6cb2d3
authored
Feb 21, 2006
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MIPS] Use "=R" constraint to avoid compiler errors in cmpxchg().
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
e95a9ec1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
include/asm-mips/system.h
include/asm-mips/system.h
+4
-4
No files found.
include/asm-mips/system.h
View file @
3e6cb2d3
...
@@ -322,7 +322,7 @@ static inline unsigned long __cmpxchg_u32(volatile int * m, unsigned long old,
...
@@ -322,7 +322,7 @@ static inline unsigned long __cmpxchg_u32(volatile int * m, unsigned long old,
#endif
#endif
"2:
\n
"
"2:
\n
"
" .set pop
\n
"
" .set pop
\n
"
:
"=&r"
(
retval
),
"=
m
"
(
*
m
)
:
"=&r"
(
retval
),
"=
R
"
(
*
m
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"memory"
);
:
"memory"
);
}
else
if
(
cpu_has_llsc
)
{
}
else
if
(
cpu_has_llsc
)
{
...
@@ -342,7 +342,7 @@ static inline unsigned long __cmpxchg_u32(volatile int * m, unsigned long old,
...
@@ -342,7 +342,7 @@ static inline unsigned long __cmpxchg_u32(volatile int * m, unsigned long old,
#endif
#endif
"2:
\n
"
"2:
\n
"
" .set pop
\n
"
" .set pop
\n
"
:
"=&r"
(
retval
),
"=
m
"
(
*
m
)
:
"=&r"
(
retval
),
"=
R
"
(
*
m
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"memory"
);
:
"memory"
);
}
else
{
}
else
{
...
@@ -379,7 +379,7 @@ static inline unsigned long __cmpxchg_u64(volatile int * m, unsigned long old,
...
@@ -379,7 +379,7 @@ static inline unsigned long __cmpxchg_u64(volatile int * m, unsigned long old,
#endif
#endif
"2:
\n
"
"2:
\n
"
" .set pop
\n
"
" .set pop
\n
"
:
"=&r"
(
retval
),
"=
m
"
(
*
m
)
:
"=&r"
(
retval
),
"=
R
"
(
*
m
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"memory"
);
:
"memory"
);
}
else
if
(
cpu_has_llsc
)
{
}
else
if
(
cpu_has_llsc
)
{
...
@@ -397,7 +397,7 @@ static inline unsigned long __cmpxchg_u64(volatile int * m, unsigned long old,
...
@@ -397,7 +397,7 @@ static inline unsigned long __cmpxchg_u64(volatile int * m, unsigned long old,
#endif
#endif
"2:
\n
"
"2:
\n
"
" .set pop
\n
"
" .set pop
\n
"
:
"=&r"
(
retval
),
"=
m
"
(
*
m
)
:
"=&r"
(
retval
),
"=
R
"
(
*
m
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"R"
(
*
m
),
"Jr"
(
old
),
"Jr"
(
new
)
:
"memory"
);
:
"memory"
);
}
else
{
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment