aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorMitch Phillips <31459023+hctim@users.noreply.github.com>2022-12-20 17:16:32 -0800
committerMitch Phillips <31459023+hctim@users.noreply.github.com>2022-12-20 17:16:32 -0800
commit744486ec212773cfa3e08dd80b0fd8b279ff8faa (patch)
tree06791c6387a5e340be6ad908509e73d294bac489 /clang/lib/CodeGen/CodeGenFunction.h
parent74dd8c1bf80bbc415f8f6f45cb8f3f9bd83b3850 (diff)
downloadllvm-744486ec212773cfa3e08dd80b0fd8b279ff8faa.zip
llvm-744486ec212773cfa3e08dd80b0fd8b279ff8faa.tar.gz
llvm-744486ec212773cfa3e08dd80b0fd8b279ff8faa.tar.bz2
Revert "[AArch64] FMV support and necessary target features dependencies."
This reverts commit e43924a75145d2f9e722f74b673145c3e62bfd07. Reason: Patch broke the MSan buildbots. More information is available on the original phabricator review: https://reviews.llvm.org/D127812
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r--clang/lib/CodeGen/CodeGenFunction.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index f1d7cc7..d1ea27a 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -4813,12 +4813,6 @@ public:
// last (if it exists).
void EmitMultiVersionResolver(llvm::Function *Resolver,
ArrayRef<MultiVersionResolverOption> Options);
- void
- EmitX86MultiVersionResolver(llvm::Function *Resolver,
- ArrayRef<MultiVersionResolverOption> Options);
- void
- EmitAArch64MultiVersionResolver(llvm::Function *Resolver,
- ArrayRef<MultiVersionResolverOption> Options);
private:
QualType getVarArgType(const Expr *Arg);
@@ -4837,11 +4831,7 @@ private:
llvm::Value *EmitX86CpuSupports(ArrayRef<StringRef> FeatureStrs);
llvm::Value *EmitX86CpuSupports(uint64_t Mask);
llvm::Value *EmitX86CpuInit();
- llvm::Value *FormX86ResolverCondition(const MultiVersionResolverOption &RO);
- llvm::Value *EmitAArch64CpuInit();
- llvm::Value *
- FormAArch64ResolverCondition(const MultiVersionResolverOption &RO);
- llvm::Value *EmitAArch64CpuSupports(ArrayRef<StringRef> FeatureStrs);
+ llvm::Value *FormResolverCondition(const MultiVersionResolverOption &RO);
};