Remove all Alpha architecture optimizations

Alpha has been end-of-lifed and no more test machines are available.
This commit is contained in:
Diego Biurrun
2013-11-13 20:39:56 +01:00
parent 16381923fb
commit c7f7bfc9e3
24 changed files with 8 additions and 1966 deletions

View File

@@ -242,10 +242,7 @@ int ff_msmpeg4_pred_dc(MpegEncContext *s, int n,
: "%eax", "%edx"
);
#else
/* #elif ARCH_ALPHA */
/* Divisions are extremely costly on Alpha; optimize the most
common case. But they are costly everywhere...
*/
/* Divisions are costly everywhere; optimize the most common case. */
if (scale == 8) {
a = (a + (8 >> 1)) / 8;
b = (b + (8 >> 1)) / 8;