diff options
author | Nate Begeman <natebegeman@mac.com> | 2010-06-14 05:21:25 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2010-06-14 05:21:25 +0000 |
commit | 61eecf5aea018ea65c9ab0bccacd2996b15c632d (patch) | |
tree | 87eaf55305ee9c8524e87e4860a9e01e6b2097fa /lib/CodeGen/CodeGenFunction.h | |
parent | 9fde7ca3fe600d01b37aa0e45212c055648ac93c (diff) |
Add some missing shifts
Fix multiplies by scalar
Add SemaChecking code for all immediates
Add SemaChecking-gen support to arm_neon.td
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105930 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index 44b3c5db44..f8ca34c614 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1147,10 +1147,11 @@ public: llvm::Value *EmitARMBuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitNeonCall(llvm::Function *F, llvm::SmallVectorImpl<llvm::Value*> &O, - const char *name, bool splat = false); + const char *name, bool splat = false, + unsigned shift = 0, bool rightshift = false); llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx); llvm::Value *EmitNeonShiftVector(llvm::Value *V, const llvm::Type *Ty, - bool negateForRightShift = false); + bool negateForRightShift); llvm::Value *EmitX86BuiltinExpr(unsigned BuiltinID, const CallExpr *E); llvm::Value *EmitPPCBuiltinExpr(unsigned BuiltinID, const CallExpr *E); |