diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-06-22 23:41:02 +0000 | 
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-06-22 23:41:02 +0000 | 
| commit | a3208f9e7c5d94764599d4873622a4470af35864 (patch) | |
| tree | db6befc782ed7607c577579a2f5e69c90e0f44fa /clang/lib/Sema/SemaOverload.cpp | |
| parent | 1e13c17a55d5db7d4fd96f281940880ead12fc8c (diff) | |
| download | bcm5719-llvm-a3208f9e7c5d94764599d4873622a4470af35864.tar.gz bcm5719-llvm-a3208f9e7c5d94764599d4873622a4470af35864.zip | |
Vector types are not arithmetic types, either. Note that we now ban
__real myvec and __imag myvec, since they aren't all that useful (it's
just an identity function) but we might want to use them in more
restricted cases in the future (e.g., "__real mycomplexvec" could
extract the real parts of a vector of complex numbers).
llvm-svn: 106601
Diffstat (limited to 'clang/lib/Sema/SemaOverload.cpp')
| -rw-r--r-- | clang/lib/Sema/SemaOverload.cpp | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/clang/lib/Sema/SemaOverload.cpp b/clang/lib/Sema/SemaOverload.cpp index 61d42f083c6..317e8cd6d38 100644 --- a/clang/lib/Sema/SemaOverload.cpp +++ b/clang/lib/Sema/SemaOverload.cpp @@ -845,7 +845,7 @@ static bool IsVectorConversion(ASTContext &Context, QualType FromType,        return false;      // Vector splat from any arithmetic type to a vector. -    if (!FromType->isVectorType() && FromType->isArithmeticType()) { +    if (FromType->isArithmeticType()) {        ICK = ICK_Vector_Splat;        return true;      } @@ -1041,8 +1041,7 @@ Sema::IsStandardConversion(Expr* From, QualType ToType,                FromType->isAnyPointerType() ||                FromType->isBlockPointerType() ||                FromType->isMemberPointerType() || -              FromType->isNullPtrType()) && -             /*FIXME*/!FromType->isVectorType()) { +              FromType->isNullPtrType())) {      // Boolean conversions (C++ 4.12).      SCS.Second = ICK_Boolean_Conversion;      FromType = Context.BoolTy; | 

