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:
committet von
Shweta Khatri
Ursprung
687eb043d4
Commit
a2d0adf9be
@@ -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 {
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren