diff options
author | Lucas Prates <lucas.prates@arm.com> | 2020-06-09 09:52:01 +0100 |
---|---|---|
committer | Lucas Prates <lucas.prates@arm.com> | 2020-06-18 13:17:07 +0100 |
commit | ada4c9dc4a63160b6b3cfd5965884c6cce2a405c (patch) | |
tree | 7bdfa509850df96804dab0f2b05cab5158260046 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 92ad6d57c21824ddb4bca2d01734c5d2c391b5b5 (diff) | |
download | llvm-ada4c9dc4a63160b6b3cfd5965884c6cce2a405c.zip llvm-ada4c9dc4a63160b6b3cfd5965884c6cce2a405c.tar.gz llvm-ada4c9dc4a63160b6b3cfd5965884c6cce2a405c.tar.bz2 |
[ARM][Clang] Removing lowering of half-precision FP arguments and returns from Clang's CodeGen
Summary:
On the process of moving the argument lowering handling for
half-precision floating point arguments and returns to the backend, this
patch removes the code that was responsible for handling the coercion of
those arguments in Clang's Codegen.
Reviewers: rjmccall, chill, ostannard, dnsampaio
Reviewed By: ostannard
Subscribers: stuij, kristof.beyls, dmgreen, danielkiss, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D81451
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 935e855..4296253 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -3923,7 +3923,6 @@ public: QualType RTy); llvm::Value *EmitCMSEClearRecord(llvm::Value *V, llvm::ArrayType *ATy, QualType RTy); - llvm::Value *EmitCMSEClearFP16(llvm::Value *V); llvm::Value *EmitCommonNeonBuiltinExpr(unsigned BuiltinID, unsigned LLVMIntrinsic, |