Stray tab cleanup

This commit is contained in:
Dan Olson 2015-03-01 00:29:32 -08:00
parent f554c322a8
commit ecd6843069

View file

@ -560,7 +560,7 @@ static void registerPredefinedFloatABI(const char *soft, const char *hard, const
// Use target floating point unit instead of s/w float routines
bool useFPU = !gTargetMachine->Options.UseSoftFloat;
VersionCondition::addPredefinedGlobalIdent(useFPU ? "D_HardFloat" : "D_SoftFloat");
if (gTargetMachine->Options.FloatABIType == llvm::FloatABI::Soft)
{
VersionCondition::addPredefinedGlobalIdent(useFPU && softfp ? softfp : soft);