diff options
author | Nate Begeman <natebegeman@mac.com> | 2009-08-09 17:55:44 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2009-08-09 17:55:44 +0000 |
commit | 25b4fdb9d63095448e6cbc97b8865b36b0c8cbb6 (patch) | |
tree | a9a6eb7d4057c432773c1eaa5dd98b099aafc0a9 /lib/CodeGen/CGExprScalar.cpp | |
parent | 10c40eee98c600d24437474463b056f323d0cfd2 (diff) |
AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d);
In addition to being defined by the AltiVec PIM, this is also the vector
initializer syntax used by OpenCL, so that vector literals are compatible
with macro arguments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@78535 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 3a9ec7ef6f..44f4c27927 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -467,7 +467,7 @@ Value *ScalarExprEmitter::EmitScalarConversion(Value *Src, QualType SrcType, } // A scalar can be splatted to an extended vector of the same element type - if (DstType->isExtVectorType() && !isa<VectorType>(SrcType)) { + if (DstType->isExtVectorType() && !SrcType->isVectorType()) { // Cast the scalar to element type QualType EltTy = DstType->getAsExtVectorType()->getElementType(); llvm::Value *Elt = EmitScalarConversion(Src, SrcType, EltTy); |