We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5932e1 commit 451cad3Copy full SHA for 451cad3
clang/utils/TableGen/SveEmitter.cpp
@@ -99,7 +99,7 @@ class SVEType {
99
bool isScalableVector() const { return isVector() && IsScalable; }
100
bool isFixedLengthVector() const { return isVector() && !IsScalable; }
101
bool isChar() const { return ElementBitwidth == 8; }
102
- bool isVoid() const { return Void & !Pointer; }
+ bool isVoid() const { return Void && !Pointer; }
103
bool isDefault() const { return DefaultType; }
104
bool isFloat() const { return Float && !BFloat; }
105
bool isBFloat() const { return BFloat && !Float; }
0 commit comments