File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
llvm/include/llvm/CodeGenTypes Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,9 @@ class LLT {
47
47
48
48
// / Get a low-level token; just a scalar with zero bits (or no size).
49
49
static constexpr LLT token () {
50
- return LLT{/* isPointer=*/ false , /* isVector=*/ false , /* isScalar=*/ true ,
51
- ElementCount::getFixed (0 ), /* SizeInBits=*/ 0 ,
50
+ return LLT{/* isPointer=*/ false , /* isVector=*/ false ,
51
+ /* isScalar=*/ true , ElementCount::getFixed (0 ),
52
+ /* SizeInBits=*/ 0 ,
52
53
/* AddressSpace=*/ 0 };
53
54
}
54
55
@@ -148,7 +149,9 @@ class LLT {
148
149
return isValid () && IsPointer && !IsVector;
149
150
}
150
151
constexpr bool isPointerVector () const { return IsPointer && isVector (); }
151
- constexpr bool isPointerOrPointerVector () const { return IsPointer && isValid (); }
152
+ constexpr bool isPointerOrPointerVector () const {
153
+ return IsPointer && isValid ();
154
+ }
152
155
153
156
// / Returns the number of elements in a vector LLT. Must only be called on
154
157
// / vector types.
You can’t perform that action at this time.
0 commit comments