diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2006-04-16 03:40:04 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2006-04-16 03:40:04 +0000 |
commit | fd925db3c8175a5f7edf9c8280d48d190843efe5 (patch) | |
tree | d678cf4c811b20c554a38df88392d2983fec628f | |
parent | fac8012c3f3860eef529274e51af57b5eb5740c7 (diff) | |
download | ffmpeg-fd925db3c8175a5f7edf9c8280d48d190843efe5.tar.gz |
typo in the gcc handmade regalloc trigger
Originally committed as revision 5297 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ppc/gcc_fixes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/gcc_fixes.h b/libavcodec/ppc/gcc_fixes.h index 79c8c444ed..943905bc5d 100644 --- a/libavcodec/ppc/gcc_fixes.h +++ b/libavcodec/ppc/gcc_fixes.h @@ -23,9 +23,9 @@ #define AVV(x...) {x} #if (__GNUC__ < 4) -# define REG_v(a) asm ( #a ) -#else # define REG_v(a) +#else +# define REG_v(a) asm ( #a ) #endif #if (__GNUC__ * 100 + __GNUC_MINOR__ < 303) |