diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-09 16:07:21 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-10-09 16:07:21 +0000 |
commit | 15fcc2046636e2becae72824b0af35b45e639c97 (patch) | |
tree | 130f50508fc2bb1c30961f1955957cdb8577d0ac /gcc/longlong.h | |
parent | 8fa48d1cff675fe8dd3d3dc1e68c48b2f31bf2a8 (diff) | |
download | gcc-15fcc2046636e2becae72824b0af35b45e639c97.tar.gz |
* longlong.h (count_leading_zeros): Replace '{' and '}' with '%{'
and '%}', respectively.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129169 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index 8350fbc2b45..59fdc5e77c6 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -553,7 +553,7 @@ UDItype __umulsidi3 (USItype, USItype); cpu32 disguises as a 68020, but lacks them. */ #if defined (__mc68020__) && !defined (__mcpu32__) #define count_leading_zeros(count, x) \ - __asm__ ("bfffo %1{%b2:%b2},%0" \ + __asm__ ("bfffo %1%{%b2:%b2%},%0" \ : "=d" ((USItype) (count)) \ : "od" ((USItype) (x)), "n" (0)) /* Some ColdFire architectures have a ff1 instruction supported via |