X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=sect.c;h=2269403e2b68e3426e843a9cb0569d5aa3b58637;hp=26fe2f95f304a84e9139de36bfb0c196ffced331;hb=4ca3c2db2690ab998707415f8555ecd2fabc6ef2;hpb=33bb2746fadd3501eccf6b1046cf8acdfb0f1e37 diff --git a/sect.c b/sect.c index 26fe2f9..2269403 100644 --- a/sect.c +++ b/sect.c @@ -727,6 +727,21 @@ int ResolveFixups(int sno) *locp = (uint8_t)eval; break; + // Fixup a 4-byte float + case FU_FLOATSING: + warn("FU_FLOATSING missing implementation\n%s", "And you may ask yourself, \"Self, how did I get here?\""); + break; + + // Fixup a 8-byte float + case FU_FLOATDOUB: + warn("FU_FLOATDOUB missing implementation\n%s", "And you may ask yourself, \"Self, how did I get here?\""); + break; + + // Fixup a 12-byte float + case FU_FLOATEXT: + warn("FU_FLOATEXT missing implementation\n%s", "And you may ask yourself, \"Self, how did I get here?\""); + break; + default: // Bad fixup type--this should *never* happen! // Once we call this function, it winds down immediately; it