aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.cpp
diff options
context:
space:
mode:
authorPrabhuk <prabhukr@google.com>2024-02-16 16:43:50 -0800
committerGitHub <noreply@github.com>2024-02-16 16:43:50 -0800
commitea9ec80b7aa1bd34edd5b544cd41450573f2cbff (patch)
tree0913349575d74f58f4ba4979347ddc9b6e29668e /clang/lib/CodeGen/CodeGenModule.cpp
parent4bb0ca655bb65aae0a1d251ba5053aadff678101 (diff)
downloadllvm-ea9ec80b7aa1bd34edd5b544cd41450573f2cbff.zip
llvm-ea9ec80b7aa1bd34edd5b544cd41450573f2cbff.tar.gz
llvm-ea9ec80b7aa1bd34edd5b544cd41450573f2cbff.tar.bz2
Revert "[AArch64] Add soft-float ABI (#74460)" (#82032)
This reverts commit 9cc98e336980f00cbafcbed8841344e6ac472bdc. Issue: https://github.com/ClangBuiltLinux/linux/issues/1997
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.cpp')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.cpp b/clang/lib/CodeGen/CodeGenModule.cpp
index 64836f8..c984260 100644
--- a/clang/lib/CodeGen/CodeGenModule.cpp
+++ b/clang/lib/CodeGen/CodeGenModule.cpp
@@ -145,8 +145,6 @@ createTargetCodeGenInfo(CodeGenModule &CGM) {
Kind = AArch64ABIKind::DarwinPCS;
else if (Triple.isOSWindows())
return createWindowsAArch64TargetCodeGenInfo(CGM, AArch64ABIKind::Win64);
- else if (Target.getABI() == "aapcs-soft")
- Kind = AArch64ABIKind::AAPCSSoft;
return createAArch64TargetCodeGenInfo(CGM, Kind);
}