Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
36778627
Commit
36778627
authored
Jan 15, 2016
by
James Almer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x86/intmath: add missing early clobber to output operands
Signed-off-by:
James Almer
<
jamrial@gmail.com
>
parent
da6f3451
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
intmath.h
libavutil/x86/intmath.h
+2
-2
No files found.
libavutil/x86/intmath.h
View file @
36778627
...
...
@@ -109,7 +109,7 @@ static av_always_inline av_const double av_clipd_sse2(double a, double amin, dou
#endif
__asm__
(
"minsd %2, %0
\n\t
"
"maxsd %1, %0
\n\t
"
:
"+x"
(
a
)
:
"xm"
(
amin
),
"xm"
(
amax
));
:
"+
&
x"
(
a
)
:
"xm"
(
amin
),
"xm"
(
amax
));
return
a
;
}
...
...
@@ -125,7 +125,7 @@ static av_always_inline av_const float av_clipf_sse(float a, float amin, float a
#endif
__asm__
(
"minss %2, %0
\n\t
"
"maxss %1, %0
\n\t
"
:
"+x"
(
a
)
:
"xm"
(
amin
),
"xm"
(
amax
));
:
"+
&
x"
(
a
)
:
"xm"
(
amin
),
"xm"
(
amax
));
return
a
;
}
...
...
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