Fix some more compiler warnings on armcc.

This commit is contained in:
Ryan C. Gordon
2017-03-03 16:38:17 -05:00
parent d526b8a1e9
commit ca0bf151d5
8 changed files with 23 additions and 12 deletions

View File

@@ -229,7 +229,7 @@ done:
}
#else
#define cpuid(func, a, b, c, d) \
a = b = c = d = 0
do { a = b = c = d = 0; (void) a; (void) b; (void) c; (void) d; } while (0)
#endif
static int CPU_CPUIDFeatures[4];