This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI C/C++ Compiler
Hello,
What is to proper syntax in assembly (TI ARM tools) to achieve the same result as:
#if defined(AAA) || defined(BBB)
for single check the following seem to work
.if $$defined(AAA)
but i did not find how to do the OR operation (similar syntax as in C above did not work)
Thanks
Guy
You are correct. But I want to clarify one thing. Note that || evaluation stops if the first operand is true. With |, both operands are always evaluated. In this particular context, this distinction rarely makes a meaningful difference. But I thought I would point it out anyway.
Thanks and regards,
-George
Guy Mardiks said:if there is syntax to achieve the || (logical) "effect" in assembly?
Unfortunately, no.
Thanks and regards,
-George
The "defined" operator is guaranteed to return a 0 or 1, and can't have any side effects, so for this particular expression, the | operator is exactly equivalent to a hypothetical || operator. This is true for many assembly preprpocessor expressions; if all of the subexpressions are either 0 or 1, and you don't have any side effects, bitwise | is equivalent to logical ||