diff options
author | Nate Begeman <natebegeman@mac.com> | 2010-08-06 01:24:57 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2010-08-06 01:24:57 +0000 |
commit | cd480ad90ff4c144084805761d2dfa52ee9e1c92 (patch) | |
tree | 8f415d4361c7974e02b5207b862ca8efe1798f15 /lib/CodeGen/CodeGenFunction.h | |
parent | 6d4e44b462fe9e870a40358522379400ccc6e3c2 (diff) |
vdup_lane was missing
<rdar://problem/8278732>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@110420 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index a72cc0fd2b..5934da0ef9 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -1437,7 +1437,8 @@ public: llvm::SmallVectorImpl<llvm::Value*> &O, const char *name, bool splat = false, unsigned shift = 0, bool rightshift = false); - llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx); + llvm::Value *EmitNeonSplat(llvm::Value *V, llvm::Constant *Idx, + bool widen = false); llvm::Value *EmitNeonShiftVector(llvm::Value *V, const llvm::Type *Ty, bool negateForRightShift); |