forked from OSchip/llvm-project
parent
6d047b70a4
commit
1af12b587b
|
@ -378,7 +378,7 @@ namespace llvm {
|
|||
SimpleTy == MVT::v16i64);
|
||||
}
|
||||
|
||||
/// Return true if this is a 1024-bit vector type.
|
||||
/// Return true if this is a 2048-bit vector type.
|
||||
bool is2048BitVector() const {
|
||||
return (SimpleTy == MVT::v256i8 || SimpleTy == MVT::v128i16 ||
|
||||
SimpleTy == MVT::v64i32 || SimpleTy == MVT::v32i64);
|
||||
|
|
|
@ -69,7 +69,7 @@ def v4i32 : ValueType<128, 43>; // 4 x i32 vector value
|
|||
def v8i32 : ValueType<256, 44>; // 8 x i32 vector value
|
||||
def v16i32 : ValueType<512, 45>; // 16 x i32 vector value
|
||||
def v32i32 : ValueType<1024,46>; // 32 x i32 vector value
|
||||
def v64i32 : ValueType<2048,47>; // 32 x i32 vector value
|
||||
def v64i32 : ValueType<2048,47>; // 64 x i32 vector value
|
||||
|
||||
def v1i64 : ValueType<64 , 48>; // 1 x i64 vector value
|
||||
def v2i64 : ValueType<128, 49>; // 2 x i64 vector value
|
||||
|
|
Loading…
Reference in New Issue