[clang] [clang] fix uefi target for aarch64 & x86_64 (PR #120632)
Joseph Huber via cfe-commits
cfe-commits at lists.llvm.org
Thu Dec 19 16:01:44 PST 2024
================
@@ -820,43 +820,6 @@ class LLVM_LIBRARY_VISIBILITY X86_64TargetInfo : public X86TargetInfo {
}
};
-// x86-64 UEFI target
-class LLVM_LIBRARY_VISIBILITY UEFIX86_64TargetInfo
- : public UEFITargetInfo<X86_64TargetInfo> {
-public:
- UEFIX86_64TargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
- : UEFITargetInfo<X86_64TargetInfo>(Triple, Opts) {
- this->TheCXXABI.set(TargetCXXABI::Microsoft);
----------------
jhuber6 wrote:
Guessing we don't need this or the CC check code below?
https://github.com/llvm/llvm-project/pull/120632
More information about the cfe-commits
mailing list