2
0

ensure the condition is evaluated before applying the negation operator

[ROCm/hip commit: 83d9e889a9]
Este cometimento está contido em:
Siu Chi Chan
2017-09-20 01:38:28 -04:00
ascendente d4919a95cb
cometimento 6884635ae0
+1 -1
Ver ficheiro
@@ -99,7 +99,7 @@ extern int HIP_TRACE_API;
// TODO-HCC add a dummy implementation of assert, need to replace with a proper kernel exit call.
#if __HIP_DEVICE_COMPILE__ == 1
#undef assert
#define assert(COND) { if (!COND) {abort();} }
#define assert(COND) { if (!(COND)) {abort();} }
#endif