diff options
author | Tim Northover <Tim.Northover@arm.com> | 2013-05-04 07:15:13 +0000 |
---|---|---|
committer | Tim Northover <Tim.Northover@arm.com> | 2013-05-04 07:15:13 +0000 |
commit | 8ec8c4bf89c5e1bed3bcb3425e6e3fa347fea319 (patch) | |
tree | 7ab2a936f598480a2c5b5c34f221d2a4c266e0d8 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | fa7a7b4f369de6f5a3f21240c1448df4a42f9be7 (diff) | |
download | bcm5719-llvm-8ec8c4bf89c5e1bed3bcb3425e6e3fa347fea319.tar.gz bcm5719-llvm-8ec8c4bf89c5e1bed3bcb3425e6e3fa347fea319.zip |
AArch64: teach Clang about __clear_cache intrinsic
libgcc provides a __clear_cache intrinsic on AArch64, much like it
does on 32-bit ARM.
llvm-svn: 181111
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index 3ea2f34f104..08e60c43ce2 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2503,6 +2503,7 @@ public: /// is unhandled by the current target. llvm::Value *EmitTargetBuiltinExpr(unsigned BuiltinID, const CallExpr *E); + llvm::Value *EmitAArch64BuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitARMBuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitNeonCall(llvm::Function *F, SmallVectorImpl<llvm::Value*> &O, |