diff options
author | Prabhuk <prabhukr@google.com> | 2024-02-16 16:43:50 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 16:43:50 -0800 |
commit | ea9ec80b7aa1bd34edd5b544cd41450573f2cbff (patch) | |
tree | 0913349575d74f58f4ba4979347ddc9b6e29668e /clang/lib/CodeGen/CodeGenModule.cpp | |
parent | 4bb0ca655bb65aae0a1d251ba5053aadff678101 (diff) | |
download | llvm-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.cpp | 2 |
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); } |