[cmake] Added target static_check for static code analysis

- Added static code analysis using cppcheck
- Fixed couple of warnings reported by cppcheck

Change-Id: Ie3b9b06e95ada322e7dc2ce3d6b91831e870198d


[ROCm/hip commit: 7930c03e42]
This commit is contained in:
Maneesh Gupta
2017-12-14 12:16:44 +05:30
vanhempi 53897e1ca3
commit fc047fada9
3 muutettua tiedostoa jossa 8 lisäystä ja 4 poistoa
+1 -1
Näytä tiedosto
@@ -448,7 +448,7 @@ __device__ __half2 __lowhigh2highlow(const __half2 a) {
__device__ __half2 __lows2half2(const __half2 a, const __half2 b) {
__half2 c;
c.y = a.x;
c.x = a.x;
c.y = b.x;
return c;
}