This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
Drop local lable from ppc asm timer.
The aix assembler does not support local lables.
tags/n2.0
Carl Eugen Hoyos
12 years ago
parent
06549cee42
commit
6258e86d4b
1 changed files
with
1 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-2
libavutil/ppc/timer.h
+ 1
- 2
libavutil/ppc/timer.h
View File
@@ -31,12 +31,11 @@ static inline uint64_t read_time(void)
/* from section 2.2.1 of the 32-bit PowerPC PEM */
__asm__ volatile(
"1:\n"
"mftbu %2\n"
"mftb %0\n"
"mftbu %1\n"
"cmpw %2,%1\n"
"bne
1b
\n"
"bne
$-0x10
\n"
: "=r"(tbl), "=r"(tbu), "=r"(temp)
:
: "cc");
Write
Preview
Loading…
Cancel
Save