Browse Source

Use ifdef instead of if

tags/v0.3.11^2
Martin Kroeker GitHub 5 years ago
parent
commit
10379fc83b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      kernel/setparam-ref.c

+ 1
- 1
kernel/setparam-ref.c View File

@@ -1164,7 +1164,7 @@ static void init_parameter(void) {
TABLE_NAME.xgemm3m_q = QGEMM_DEFAULT_Q; TABLE_NAME.xgemm3m_q = QGEMM_DEFAULT_Q;
#endif #endif


#if (CORE_KATMAI) || (CORE_COPPERMINE) || (CORE_BANIAS) || (CORE_YONAH) || (CORE_ATHLON)
#if defined(CORE_KATMAI) || defined(CORE_COPPERMINE) || defined(CORE_BANIAS) || defined(CORE_YONAH) || defined(CORE_ATHLON)


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


Loading…
Cancel
Save