sdl12-compat: FIXME removal: this _could_ be SIMD'd, but...it's probably not worth it.

From 90a33cda31b3a76b99e3cf29c0291f79e2453cd5 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Thu, 18 Aug 2022 22:14:09 -0400
Subject: [PATCH] FIXME removal: this _could_ be SIMD'd, but...it's probably
 not worth it.

Reference Issue #143.
---
 src/SDL12_compat.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/src/SDL12_compat.c b/src/SDL12_compat.c
index 6948e8d4..97b6302f 100644
--- a/src/SDL12_compat.c
+++ b/src/SDL12_compat.c
@@ -5989,9 +5989,6 @@ SaveDestAlpha(SDL12_Surface *src12, SDL12_Surface *dst12, Uint8 **retval)
         }
         dptr = dstalpha;
 
-        if ((amask == 0xFF) || (amask == 0xFF00) || (amask == 0xFF0000) ||(amask == 0xFF000000)) {
-            FIXME("this could be SIMD'd");
-        }
         if (dst12->format->BytesPerPixel == 2) {
             const Uint16 *sptr = (const Uint16 *) dst12->pixels;
             for (y = 0; y < h; y++) {
@@ -6030,9 +6027,6 @@ RestoreDestAlpha(SDL12_Surface *dst12, Uint8 *dstalpha)
         const Uint32 ashift = dst12->format->Ashift;
         const Uint16 pitch = dst12->pitch;
 
-        if ((amask == 0xFF) || (amask == 0xFF00) || (amask == 0xFF0000) ||(amask == 0xFF000000)) {
-            FIXME("this could be SIMD'd");
-        }
         if (dst12->format->BytesPerPixel == 2) {
             Uint16 *dptr = (Uint16 *) dst12->pixels;
             for (y = 0; y < h; y++) {