blob: 2343868162f839c216fd1ba79f8443188210304c [file] [log] [blame]
Andreas Huberc9410c72016-07-28 12:18:40 -07001#include "VectorType.h"
2
3#include "Formatter.h"
4
5namespace android {
6
7VectorType::VectorType(Type *elementType)
8 : mElementType(elementType) {
9}
10
11void VectorType::dump(Formatter &out) const {
12 out<< "vec<";
13 mElementType->dump(out);
14 out << ">";
15}
16
17} // namespace android
18