Skip to content

Commit 10379fc

Browse files
authored
Use ifdef instead of if
1 parent a85ac71 commit 10379fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kernel/setparam-ref.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1164,7 +1164,7 @@ static void init_parameter(void) {
11641164
TABLE_NAME.xgemm3m_q = QGEMM_DEFAULT_Q;
11651165
#endif
11661166

1167-
#if (CORE_KATMAI) || (CORE_COPPERMINE) || (CORE_BANIAS) || (CORE_YONAH) || (CORE_ATHLON)
1167+
#if defined(CORE_KATMAI) || defined(CORE_COPPERMINE) || defined(CORE_BANIAS) || defined(CORE_YONAH) || defined(CORE_ATHLON)
11681168

11691169
#ifdef DEBUG
11701170
fprintf(stderr, "Katmai, Coppermine, Banias, Athlon\n");

0 commit comments

Comments
 (0)