﻿# V733\. It is possible that macro expansion resulted in incorrect evaluation order\.

The analyzer has detected a potential error that has to do with the use of macros expanding into arithmetic expressions\. One normally expects that the subexpression passed as a parameter into a macro will be executed first in the resulting expression\. However, it may not be so, and this results in bugs that are difficult to diagnose\.

Consider this example: 

```cpp
#define RShift(a) a >> 3
....
y = RShift(x & 0xFFF);
```

If we expand the macro, we'll get the following expression:

y \= x & 0xFFF \>\> 3;

Operation "\>\>" has higher [priority](https://pvs-studio.com/en/blog/terms/0064/) than "&"\. That's why the expression will be evaluated as "x & \(0xFFF \>\> 3\)", while the programmer expected it to be "\(x & 0xFFF\) \>\> 3"\.

To fix this, we need to put parentheses around the 'a' argument:

```cpp
#define RShift(a) (a) >> 3
```

However, there is one more improvement we should make\. It is helpful to parenthesize the whole expression in the macro as well\. This is considered good style and can help avoid some other errors\. This is what the final improved version of the sample code looks like:

```cpp
#define RShift(a) ((a) >> 3)
```

**Note\.** This diagnostic is similar to [V1003](https://pvs-studio.com/en/docs/warnings/v1003/)\. The latter is less accurate and  produces  more  false  positives  since  it  deals  with  a macro declaration rather than the expanded macro\. On the other hand, despite its flaws, diagnostic V1003 can detect errors that V733 cannot\.