Correct evaluating condition to use logical AND

Aqlpacket:IsValid() function: Replaced bitwise AND operator (&) with the logical
AND operator (&&) when evaluating AQL packet type

Change-Id: I59980bc206cc7eff424023fff0bb92b618aa8c70
Dieser Commit ist enthalten in:
Shweta Khatri
2023-07-18 19:46:14 -04:00
committet von Shweta Khatri
Ursprung 687eb043d4
Commit a2d0adf9be
+1 -1
Datei anzeigen
@@ -72,7 +72,7 @@ struct AqlPacket {
}
bool IsValid() const {
return int(type() <= HSA_PACKET_TYPE_BARRIER_OR) & (type() != HSA_PACKET_TYPE_INVALID);
return ((type() <= HSA_PACKET_TYPE_BARRIER_OR) && (type() != HSA_PACKET_TYPE_INVALID));
}
std::string string() const {