forked from OSchip/llvm-project
parent
cabb48d511
commit
f0335ce632
|
@ -1524,10 +1524,7 @@ llvm::DIType CGDebugInfo::CreateTypeNode(QualType Ty,
|
|||
#include "clang/AST/TypeNodes.def"
|
||||
assert(false && "Dependent types cannot show up in debug information");
|
||||
|
||||
// FIXME: Handle these.
|
||||
case Type::ExtVector:
|
||||
return llvm::DIType();
|
||||
|
||||
case Type::Vector:
|
||||
return CreateType(cast<VectorType>(Ty), Unit);
|
||||
case Type::ObjCObjectPointer:
|
||||
|
|
|
@ -54,3 +54,8 @@ __uint128_t foo128 ()
|
|||
__uint128_t int128 = 44;
|
||||
return int128;
|
||||
}
|
||||
|
||||
// CHECK: uint64x2_t
|
||||
typedef unsigned long long uint64_t;
|
||||
typedef uint64_t uint64x2_t __attribute__((ext_vector_type(2)));
|
||||
uint64x2_t extvectbar[4];
|
||||
|
|
Loading…
Reference in New Issue