dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 109648 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r109648 | qwell | 2008-03-18 14:23:44 -0500 (Tue, 18 Mar 2008) | 7 lines

Allow codecs that use log2comp (g726) to compile correctly on x86 with gcc4 optimizations.

(closes issue #12253)
Reported by: fossil
Patches:
      log2comp.patch uploaded by fossil (license 140)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@109651 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
qwell 2008-03-18 19:24:15 +00:00
parent cc9a99e058
commit 427d420574
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ static inline int ilog2(int val)
decl %0 ;\
bsrl %1, %0 ;\
"
: "=r" (a)
: "=&r" (a)
: "mr" (val)
: "cc"
);