Skip to content

Commit fab3807

Browse files
committed
Android no longer supports arm < 7
1 parent 70a16b9 commit fab3807

File tree

1 file changed

+1
-1
lines changed
  • clang/lib/Driver/ToolChains/Arch

1 file changed

+1
-1
lines changed

clang/lib/Driver/ToolChains/Arch/ARM.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ arm::FloatABI arm::getDefaultFloatABI(const llvm::Triple &Triple) {
450450
// EABI is always AAPCS, and if it was not marked 'hard', it's softfp
451451
return FloatABI::SoftFP;
452452
case llvm::Triple::Android:
453-
return (SubArch >= 7) ? FloatABI::SoftFP : FloatABI::Soft;
453+
return FloatABI::SoftFP;
454454
default:
455455
return FloatABI::Invalid;
456456
}

0 commit comments

Comments
 (0)