diff options
author | Tim Northover <tnorthover@apple.com> | 2014-01-31 10:46:45 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-01-31 10:46:45 +0000 |
commit | 027b4ee607d4a9a39d1e2a9fbc4766000c76b071 (patch) | |
tree | 4dbbf95807b69c82fd4d0f2913a2108e0ee0f396 /clang/lib/CodeGen/CodeGenFunction.h | |
parent | 9d3ab5fe9f7f2bd47cf5a5a649751499e7f77c27 (diff) | |
download | bcm5719-llvm-027b4ee607d4a9a39d1e2a9fbc4766000c76b071.tar.gz bcm5719-llvm-027b4ee607d4a9a39d1e2a9fbc4766000c76b071.zip |
ARM & AArch64: move shared vld/vst intrinsics to common implementation.
llvm-svn: 200526
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h index e7bb91fa6a6..9f418ef434e 100644 --- a/clang/lib/CodeGen/CodeGenFunction.h +++ b/clang/lib/CodeGen/CodeGenFunction.h @@ -2178,7 +2178,8 @@ public: llvm::Value *EmitAArch64BuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitARMBuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitCommonNeonBuiltinExpr(unsigned BuiltinID, const CallExpr *E, - SmallVectorImpl<llvm::Value *> &Ops); + SmallVectorImpl<llvm::Value *> &Ops, + llvm::Value *Align = 0); llvm::Value *EmitNeonCall(llvm::Function *F, SmallVectorImpl<llvm::Value*> &O, const char *name, |