This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

#if (x>0) conditional compilation does not work

Hello, I'm using KEIL V5.10 with STM32F103.
My project has some enum type variables, such as
typedef enum
{ a0 = 0, a1, a2, an
} aType;

In source file, I used conditional compile statements:

#if (an > 0) xxxx
#endif

But the body inside was not compiled whatever an is higher than zero, I don't know why.

An array can be correctly complied if I used an as array's length, such as

static uint16_t u16Buf[an];

There is no warning or error after compilation.

Anyone knows why the conditional compilation does not work?

Thanks!

Parents
  • Thanks for your reply!

    But what do you think about GCC document which talks about #if directive, as shown below

    gcc.gnu.org/.../cpp_4.html

    ==========================
    The '#if' directive allows you to test the value of an arithmetic expression, rather than the mere existence of one macro. Its syntax is

    #if expression

    controlled text

    #endif /* expression */

    expression is a C expression of integer type, subject to stringent restrictions. It may contain

    Integer constants.
    Character constants, which are interpreted as they would be in normal code.
    Arithmetic operators for addition, subtraction, multiplication, division, bitwise operations, shifts, comparisons, and logical operations (&& and ||). The latter two obey the usual short-circuiting rules of standard C.
    Macros. All macros in the expression are expanded before actual computation of the expression's value begins.
    Uses of the defined operator, which lets you check whether macros are defined in the middle of an '#if'.
    Identifiers that are not macros, which are all considered to be the number zero. This allows you to write #if MACRO instead of #ifdef MACRO, if you know that MACRO, when defined, will always have a nonzero value. Function-like macros used without their function call parentheses are also treated as zero.
    In some contexts this shortcut is undesirable. The '-Wundef' option causes GCC to warn whenever it encounters an identifier which is not a macro in an '#if'.

    The preprocessor does not know anything about types in the language. Therefore, sizeof operators are not recognized in '#if', and neither are enum constants. They will be taken as identifiers which are not macros, and replaced by zero. In the case of sizeof, this is likely to cause the expression to be invalid.

    The preprocessor calculates the value of expression. It carries out all calculations in the widest integer type known to the compiler; on most machines supported by GCC this is 64 bits. This is not the same rule as the compiler uses to calculate the value of a constant expression, and may give different results in some cases. If the value comes out to be nonzero, the '#if' succeeds and the controlled text is included; otherwise it is skipped.

    If expression is not correctly formed, GCC issues an error and treats the conditional as having failed.

Reply
  • Thanks for your reply!

    But what do you think about GCC document which talks about #if directive, as shown below

    gcc.gnu.org/.../cpp_4.html

    ==========================
    The '#if' directive allows you to test the value of an arithmetic expression, rather than the mere existence of one macro. Its syntax is

    #if expression

    controlled text

    #endif /* expression */

    expression is a C expression of integer type, subject to stringent restrictions. It may contain

    Integer constants.
    Character constants, which are interpreted as they would be in normal code.
    Arithmetic operators for addition, subtraction, multiplication, division, bitwise operations, shifts, comparisons, and logical operations (&& and ||). The latter two obey the usual short-circuiting rules of standard C.
    Macros. All macros in the expression are expanded before actual computation of the expression's value begins.
    Uses of the defined operator, which lets you check whether macros are defined in the middle of an '#if'.
    Identifiers that are not macros, which are all considered to be the number zero. This allows you to write #if MACRO instead of #ifdef MACRO, if you know that MACRO, when defined, will always have a nonzero value. Function-like macros used without their function call parentheses are also treated as zero.
    In some contexts this shortcut is undesirable. The '-Wundef' option causes GCC to warn whenever it encounters an identifier which is not a macro in an '#if'.

    The preprocessor does not know anything about types in the language. Therefore, sizeof operators are not recognized in '#if', and neither are enum constants. They will be taken as identifiers which are not macros, and replaced by zero. In the case of sizeof, this is likely to cause the expression to be invalid.

    The preprocessor calculates the value of expression. It carries out all calculations in the widest integer type known to the compiler; on most machines supported by GCC this is 64 bits. This is not the same rule as the compiler uses to calculate the value of a constant expression, and may give different results in some cases. If the value comes out to be nonzero, the '#if' succeeds and the controlled text is included; otherwise it is skipped.

    If expression is not correctly formed, GCC issues an error and treats the conditional as having failed.

Children